Hi!
I am using some AJAX functions in my application to get data from a server, and populate a list with it
The problem is that I have a AJAX function, and following a refresh list function, but the list get refreshed before the AJAX populate the vars.
My question is: there are some way via framework to make this function synchronous?
[code]$$(“list”).load(consult,“json”,
function(text, json, http_request) {
tall = eval(text);
});
[/code]
thanks for help