Delete Specified Record

Hi,

i am performing the operations such insert and update in dhtmlxform using the custom sql in server side and i am using save(); function to perform those actions they work perfectly and i now want to remove a record form the table through dhtmlxform but i don't know the method to perform the action

help me…

Hello,

If you’re using connector:

form.resetDataProcessor("deleted"); form.save();

if not:

dhtmlxAjax(url, function(){ // callback here if any })

  • dhtmlxAjax.get(…

Thank u… it worked