Check documentation for the latest version of dhtmlxSuite setSLURL DHTMLX Docs

setSLURL

sets the path to the server script file for silverlight mode

void setSLURL(string slUrl);
slUrlstringfull path to the server script

Example

// on init state
var myVault = new dhtmlXVaultObject({
    slUrl: "http://my_web_site/server/upload_handler.php" // full path required
});
 
// using method
myVault.setSLURL("http://my_web_site/server/upload_handler.php");

Details

This API page is for Vault v2.5. Please go to docs.dhtmlx.com/vault/ to see API reference for the current version of dhtmlxVault.

The full path is required.

Change log

added in version 2.0

Back to top