cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
hagru
Helper III
Helper III

Multiple choice field in form selected limit

Hello!

 

I have a choice field in my table that I have set to allow multiple selection. The field is inserted in a form on my Power Pages, and I would like to limit the user to only be able to select 5. It doesn't really matter if the user can insert the form multiple times and select more than 5 over multiple submits, as I can limit that in other ways, but I would like to limit the user to only select a maximum of 5 choices on each submit. 

 

How can I implement such a limit?

2 ACCEPTED SOLUTIONS

Accepted Solutions
OliverRodrigues
Most Valuable Professional
Most Valuable Professional

you can add a JavaScript validation, either via Page_Validators, or within the OnChange of the field

 

A few starting points:

Manipulating Choices (Multiselect OptionSet) via J... - Power Platform Community (microsoft.com)

Add custom JavaScript to a form | Microsoft Learn




If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.

Power Pages Super User | MVP


Oliver Rodrigues


 

View solution in original post

OliverRodrigues
Most Valuable Professional
Most Valuable Professional

Unfortunately we don't have the ID for List component, so you need to retrieve it by using eq(index)

 

If your list is the first one, you can specify the index as 0 (as per my example), and if it's the 3rd one, you would use index 2 for example:

 

$(document).ready(function() {
  $('.entitylist.entity-grid').eq(0).on("loaded", function () {
    let table = $(this);
    let count = $(table).find('tbody tr').length;
    console.log(`Number of records: ${count}`);

    let multiplePages = $(table).find(".view-pagination").is(":visible");
    console.log(`Multiple Pages: ${multiplePages}`);
  });
});

 I added some logic there with regards pagination as well, basically this logic only count the number of records within the current page, if the "multiplePages" variable is true, this means you have more records in other pages

 

Hope this helps, don't forget to like/mark the answer as the solution if it helps you




If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.

Power Pages Super User | MVP


Oliver Rodrigues


 

View solution in original post

6 REPLIES 6
OliverRodrigues
Most Valuable Professional
Most Valuable Professional

you can add a JavaScript validation, either via Page_Validators, or within the OnChange of the field

 

A few starting points:

Manipulating Choices (Multiselect OptionSet) via J... - Power Platform Community (microsoft.com)

Add custom JavaScript to a form | Microsoft Learn




If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.

Power Pages Super User | MVP


Oliver Rodrigues


 

Hello @OliverRodrigues!

 

That post of yours was very helpful, and I managed to check how many options have been selected, and disallow the user to select more if they have already selected 5, like this:

 

<script>
function GetAntiChoicesValue(fieldName) {
var choicesField = $("#cr598_anti_Container");
var choicesFieldLength = choicesField.find('.msos-selected-display-item').length;

if(choicesFieldLength > 5){
choicesField.find('.msos-selected-display-item').last().remove();
}
};
 
$(document).ready(function() {
$('#cr598_anti_Container').change(function() {
GetAntiChoicesValue("cr598_anti");
});
});
</script>

 

Thank you!

 

I also have a list that displays the values sent from this form. Is it possible to see how many rows there are in the list, and disallow the user to select more if there are already 5 in the list?

The HTML of the list element is giving me a headache, and I'm not sure how to get the length of the table out through jQuery,

OliverRodrigues
Most Valuable Professional
Most Valuable Professional

When you say a list, do you mean a Subgrid / List component / Dropdown? can you share a snapshot? 




If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.

Power Pages Super User | MVP


Oliver Rodrigues


 

Yes, it's a List component:

 

hagru_0-1714630355780.png

 

I have three of them on this page, with the data coming from three different tables. It might not matter that I have three, because I only want to know how many items are displayed in one of them, but I can't find any ID in the HTML, so I'm mentioning it either way.

OliverRodrigues
Most Valuable Professional
Most Valuable Professional

Unfortunately we don't have the ID for List component, so you need to retrieve it by using eq(index)

 

If your list is the first one, you can specify the index as 0 (as per my example), and if it's the 3rd one, you would use index 2 for example:

 

$(document).ready(function() {
  $('.entitylist.entity-grid').eq(0).on("loaded", function () {
    let table = $(this);
    let count = $(table).find('tbody tr').length;
    console.log(`Number of records: ${count}`);

    let multiplePages = $(table).find(".view-pagination").is(":visible");
    console.log(`Multiple Pages: ${multiplePages}`);
  });
});

 I added some logic there with regards pagination as well, basically this logic only count the number of records within the current page, if the "multiplePages" variable is true, this means you have more records in other pages

 

Hope this helps, don't forget to like/mark the answer as the solution if it helps you




If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.

Power Pages Super User | MVP


Oliver Rodrigues


 

You are a real MVP @OliverRodrigues!

Thank you very much. I made it all work the way I wanted by implementing your suggestions, and mixing them together to create a total, and disabling / removing selections from the choices based on the totals with the event handlers.

 

I'm marking the choice JS as the solution, as that is technically what I asked for to begin with, but the List JS would've been deserving of a solution as well!

 

EDIT 

Nevermind, I forgot I can mark them both as solutions!

Helpful resources

Announcements

Celebrating the May Super User of the Month: Laurens Martens

@LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!    

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!      

Tuesday Tip | How to Report Spam in Our Community

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp    

Welcome! Congratulations on joining the Power Pages community!

Welcome to the Power Pages Community!   You're now a part of a vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun.     Now that you're a member, you can enjoy the following resources:   The Power Pages Community Forums The forums are also a great place to connect with other Power Pages community members. Check the News & Announcements section for community highlights, find out about the latest community news, and learn about the Community Team. Share your feedback, earn custom profile badges, enter challenges to win prizes, and more.   Community Blog Our community members have learned some excellent tips and have keen insights on the future of business analysis. Head on over to the Community Blog to read the latest posts from around the world. Let us know if you'd like to become an author and contribute your own writing — everyone is welcome.   And that’s not all, we have Galleries of additional information such as the Community Connections & How To Videos & Webinars & Video Gallery and more to motivate, educate and inspire you.   Again, welcome to the Power Pages community family, we are so happy you have joined us! Whether you are brand new to the world of data or you are a seasoned veteran - our goal is to shape the community to be your ‘go to’ for support, networking, education, inspiration and encouragement as we enjoy this adventure together! Let us know in the Community Feedback forum if you have any questions or comments about your community experience, but for now – head on over to the forums Get Help with Power Pages and dive right in!   To learn more about the community and your account be sure to visit our Community Support Area. We look forward to seeing you in the Power Pages Community!   The Power Pages Community Team  

Users online (3,691)