Check documentation for the latest version of dhtmlxSuite setURL DHTMLX Docs

setURL

sets the path to the server-side script

void setURL(string url);
urlstringpath to the server-side script

Example

// on init stage
var myDataSelector = new dhtmlXDataSelector({
    url: "server/data.php"
});
 
// using method
myDataSelector.setURL("server/data.php");

Back to top