sets the path to the server script file for silverlight mode
slUrl | string | full path to the server script |
// 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");
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.
added in version 2.0
Back to top