the method :dhtmlxForm.send(url,“post”,function(xml){});
please, How obtain the responseText form the method at “dhtmlxForm.send(url,“post”,function(xml){});”?
thanks !
the method :dhtmlxForm.send(url,“post”,function(xml){});
please, How obtain the responseText form the method at “dhtmlxForm.send(url,“post”,function(xml){});”?
thanks !
3rd paramter of send() method is method which will be called after saving. First parameter of this method is xml loader object.
myForm.send(url, "post", function(response){
//response - xml loader object
})