web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / Portal SharePoint file...
Power Pages
Answered

Portal SharePoint file type upload restriction

(0) ShareShare
ReportReport
Posted on by 8

Hi all,

 

Does anyone know how to enable a restriction on file / mime types that can be uploaded into SharePoint, from an Advanced Form?The document subgrid is in a form tab that is mapped to an Advanced Form Step, which has a subgrid metadata item against it.

 

I would like to restrict document uploads to 'image/jpeg' files.

 

Thanks.

 

 

Categories:
I have the same question (0)
  • Verified answer
    H V Profile Picture
    1,510 on at

    Hi @matt_epilp 

     

    You can use below code to restrict specific file type:

    Go to your Advanced Form Step --> Form Options --> Add below javascript 

    $("input[name='file']").change(function() {
     var fileList = $("input[name='file']")[0].files;
     var isValid = true;
     if (fileList.length > 0) {
     for (var i = 0; i < fileList.length; i++) {
     if (fileList[i].type == "image/jpeg") {
     isValid = false;
     break;
     }
     }
     }
     if (!isValid) {
     $("input[name='file']").val("");
     alert("You can not add images");
     }
    });

     

    --------------------------
    If you like this post, give a Thumbs up. Where it solved your query, Mark as a Solution so it can help other people!

     

  • epilp Profile Picture
    8 on at

    That works great, thanks @hardikv !

  • ShriramP Profile Picture
    76 on at

    Hi @hardikv, Thanks a lot!

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Pages

#1
Fubar Profile Picture

Fubar 93 Super User 2025 Season 2

#2
Jerald Felix Profile Picture

Jerald Felix 45

#3
Lucas001 Profile Picture

Lucas001 28 Super User 2025 Season 2

Last 30 days Overall leaderboard