hi master:
webix.ui({
view:“datatable”,
autowidth:true,
url:“data/data.php”
});
This is the use of get or post? How to specify methods
hi master:
webix.ui({
view:“datatable”,
autowidth:true,
url:“data/data.php”
});
This is the use of get or post? How to specify methods
default DataConnector is using GET method. to use POST method, define proxy in url: “post->data/data.php” http://docs.webix.com/desktop__server_proxy.html
thank you