Skip to main content

Notifications

Announcements

No record found.

Microsoft Dynamics CRM (Archived)

Portal Form ChooseFiles

(0) ShareShare
ReportReport
Posted on by 135

Hi

I have a portal form that allows the end users to attach files. When the files are picked from the C drive by the end user it shows 2 files or 3 files next to the button Choose Files.

Is there a way to show the names of the files in a sub-grid above the Choose Files button so that the end user is aware of what is attached ? 

Thanks for your suggestions.

Thanks

*This post is locked for comments

  • Verified answer
    R89 Profile Picture
    R89 135 on at
    RE: Portal Form ChooseFiles

    Thanks. It worked exactly the way you described.

    As a followup question is there way a to change the Choose Files button text ?

    Thks

    R89

  • Verified answer
    Dmytro Rutkovskyi Profile Picture
    Dmytro Rutkovskyi 1,835 on at
    RE: Portal Form ChooseFiles

    Hi, Its not OOB functionality. If you Edit entity (not creation) - you can add Notes section With Entity Form Metadata  configuration, which allow you to add multiple files with Notes.

    If you are ok with current approach, you can add simple Javascript to "Custom Javascript" Section of the form

    $(document).ready(function() {
    
    $("#AttachFile").change(function(){ 
    var addstring = "";
    var files = $("#AttachFile")[0].files;
    for (let i=0;i<files.length;i++) {addstring+=files[i].name+"; ";}
    
    if (addstring) $("#AttachFileLabel").text("Selected: "+addstring);
      else $("#AttachFileLabel").text("Attach multiple files:");
    });  
      
    }); 


    I have tested it on Contact-Us default entity form with enabled attachment upload.
    attachment_5F00_disaply.JPG

    You can customize it in more acceptable UI for your case.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Congratulations 2024 Spotlight Honorees

Kudos to all of our 2024 community stars! 🎉

Meet the Top 10 leaders for December

Congratulations to our December super stars! 🥳

Start Your Super User Journey

Join the ranks of our community heros! 🦹

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,711 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,458 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans