sends an HTTP request to the server (emulates submitting a form)
| url |
webix.send("page.php",{record:123}, "GET");
One of the possible use cases for this method is various kinds of export:
webix.send(url, { grid_xml : encodeURI(xml) }, null, "_blank");
Back to top