Show popup dialog in rule scripts when upload file
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2013 04:41 AM
Hi,
I wanna check file name when a user upload file.
And if its file name is wrong, i wanna show dialog(pop up) with OK and NG button.
When user click OK button, user can upload file.
When user click NG button, file uploading is stopped.
Do you know how to do it by rule script?
I wanna check file name when a user upload file.
And if its file name is wrong, i wanna show dialog(pop up) with OK and NG button.
When user click OK button, user can upload file.
When user click NG button, file uploading is stopped.
Do you know how to do it by rule script?
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2013 12:04 PM
Hello,
you can not have a rule (folder rule) that triggers a dialog to the user. You need to implement a custom uploader that has to react to the duplicate file name error and trigger the dialog.
Regards
Axel
you can not have a rule (folder rule) that triggers a dialog to the user. You need to implement a custom uploader that has to react to the duplicate file name error and trigger the dialog.
Regards
Axel
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2013 09:14 PM
Thank you Afaust!
You mean web script can't use popup method like "alert("xxxx is error!")"
And I need to custom uploader, but I have no technical knowledge about it..
You mean web script can't use popup method like "alert("xxxx is error!")"
And I need to custom uploader, but I have no technical knowledge about it..
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2013 11:26 AM
A web script is executed on the server which does not have a function like "alert()".
