Hello,
First, sorry if my English is bad... I'm from Spain.
I'm developing a JavaScript Object that need to call a server
AjaxMethod like this:
...
...
function getDataTable(filterText)
{
this.lblResult.innerText = "cargando...";
AjaxNS.GetDataTable(filterText, this.getDataTable_callback);
}
...
...
The problem is when arrive to funcion getDataTable_callback (after
server execution), because the object is not reference....
For example:
The code: "this.lblResult" in getDataTable_callback method is null.
Anyone know how can I resolve it???
Thanks!
--~--~---------~--~----~------------~-------~--~----~
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/
-~----------~----~----~----~------~----~------~--~---