How to submit Data table data in server

Hello,

I want to submit the full data of the data table in server, but I am not getting how to submit the full data, I am able to submit the one row data in server, but my requirement is to sumbit the data table data in server.

Thanks in advance…Please if some one know , please reply to this post

You can use something like next

var data = JSON.stringify( $$("mytable").serialize() );
webix.ajax().post("some.php",{ griddata : data });