BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
// Toolbar settings customization
toolbarSettings: { items: ['NewFolder', 'Upload', 'Cut', 'Copy', 'Paste', 'Delete', 'Rename',
'SortBy', 'Refresh', 'Selection', 'View', 'Details'
]},
// Context Menu settings customization
contextMenuSettings: { file: ['Open', '|', 'Cut', 'Copy', '|', 'Delete', 'Rename', '|', 'Details'], folder: ['Open', '|', 'Cut', 'Copy', 'Paste', '|', 'Delete', 'Rename', '|', 'Details']}
|
toolbarClick: function(args) {
if(args.item.text == "Download") {
args.cancel = true;
// Perform your custom download operations here
}
},
menuClick: function(args) {
if(args.item.text == "Download" ) {
args.cancel = true;
// Perform your custom download operations here
}
}
|