Hello Folks,
I have a situation where I need to close few HTML object on success response. and on Error need to display all those HTML object back with detail information from server.
It is easy to handle Error, but how to handle success response ??
in my php page I have bellow code.
isc.RPCManager.addClassProperties({
handleError : function (response, request) {
if(response.status < 0)
{
............................ display error.
............................................................. works fine.
}
}
HandleSuccess: function ()
{
}
Does smartclient have method like these ??
How can i accomplish this? Is there any other way for this ?
Thanking you.
I have a situation where I need to close few HTML object on success response. and on Error need to display all those HTML object back with detail information from server.
It is easy to handle Error, but how to handle success response ??
in my php page I have bellow code.
isc.RPCManager.addClassProperties({
handleError : function (response, request) {
if(response.status < 0)
{
............................ display error.
............................................................. works fine.
}
}
HandleSuccess: function ()
{
}
Does smartclient have method like these ??
How can i accomplish this? Is there any other way for this ?
Thanking you.
Comment