Hi,
I want to be able to cancel the users browse request. For my application the user must select the destination directory before they click browse. I have added a function and set the ButtonOnClickScript like this -
- ButtonOnClickScript='CheckFolderSelected()'
-
- function CheckFolderSelected()
- {
- var folderSelect = $('#mySelector');
- if (folderSelect == 'undefined' || folderSelect.val() == 'undefined')
- {
- alert('Please select a folder to save the uploaded files');
-
- }
- }
How can I cancel the browse dialogue?
Thanks
Andy