- Home
- Forum
- ASP.NET MVC - EJ 2
- FileManager - Dialog manipulation
FileManager - Dialog manipulation
Is there any way to manipulate the pop-up dialogs on the file manager?
Attachment: renameDialog_a8d22873.zip
Specifically, I'm looking to move the validation text from the Rename dialog to appear as hover text on the header of the dialog instead of below the input (see attached renameDialog.png).
I've looked through the fileManager documentation and it doesn't seem like there's a way to get these dialogs as objects.
Attachment: renameDialog_a8d22873.zip
SIGN IN To post a reply.
6 Replies
AB
Ashokkumar Balasubramanian
Syncfusion Team
August 12, 2019 10:57 AM UTC
Hi Peter,
Good day to you.
Currently, we are not providing the option to get the Rename Dialog contents and modify it in FileManager component. So, we have planned to provide event for get the Rename Dialog contents and modify. You can use this event to get the Rename dialog content and based on your requirement to customize it in application level. We will consider this feature request on our Vol 3,2019 release which is expected to roll out on Sep 2019. Please be patience until then.
Regards,
Ashokkumar B.
PD
Peter deNoyelles
August 12, 2019 01:31 PM UTC
Thank you for the quick response! Will there be any plans to add other dialogs (New Folder dialog, error dialogs) to an event?
AB
Ashokkumar Balasubramanian
Syncfusion Team
August 13, 2019 12:06 PM UTC
Hi Peter,
Currently, we have planned to provide a generic event for below mentioned actions dialog customization.
a. New Folder
b. Upload
c. Error dialog
d. Download
e. Rename
f. Get info
g. Image preview Dialog
Once the support will be included, you can utilize that event to customize the dialog content in your application level based on provided event arguments. You can use the below feedback portal link to track the status of this feature.
Please let us know, if you have any concern on this.
Regards,
Ashokkumar B.
PD
Peter deNoyelles
August 13, 2019 01:02 PM UTC
Hi Ashokkumar,
Thank you for the response and provided feature link!
AB
Ashokkumar Balasubramanian
Syncfusion Team
August 14, 2019 04:29 AM UTC
Hi Peter,
Most Welcome.
We will update you once the feature has been completed.
Regards,
Ashokkumar B.
AB
Ashokkumar Balasubramanian
Syncfusion Team
September 16, 2019 11:20 AM UTC
Hi Peter,
We are happy to announce that we have provided a generic event for dialog customization in the release version (v17.2.49). Refer the release notes in below link.
If you want to access the feature, we suggest you update the NuGet Package to the latest version (v17.2.49). You can get the dialog object in BeforePopupOpen event of file manager component. Refer the below code snippet to get the dialog object.
|
<script>
function popupOpen(args) {
if (args.popupName == 'Rename') {
console.log(args.popupModule.element);
}
}
</script> |
For your reference, we have prepared a simple sample. Refer the sample link below.
Please let us know, if you have any concern on this.
Regards,
Ashokkumar B.
SIGN IN To post a reply.
- 6 Replies
- 2 Participants
-
PD Peter deNoyelles
- Aug 9, 2019 07:17 PM UTC
- Sep 16, 2019 11:20 AM UTC