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

Announcements

News and Announcements icon
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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Pages

#1
Hammed Profile Picture

Hammed 22

#2
Lucas001 Profile Picture

Lucas001 21 Super User 2026 Season 1

#3
CN-06091549-0 Profile Picture

CN-06091549-0 18

Last 30 days Overall leaderboard