Hi all,
I have a custom control that return the string generated by the Render
Method.
If the length of this is string is not too long all works good.
If the string is long (the control is a grid) the callback method is
not called..
why?
I've tryed to run in syncronous mod in this way:
var res;
res = Ordini.GetRows(Filtro,Ordine);
GetRows_callback(res);
and all works good.
in this way:
function MyCall{
Ordini.GetRows(Filtro,Ordine,GetRows_callback);
}
function GetRows_callback(response){
if (!response.error){
/* My code*/
}
}
Nothing happen (the GetRows_callback is not called)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info/
Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
-~----------~----~----~----~------~----~------~--~---