Hi All,
I have a dropdown list (week) with 52 entry, i want to add a check/uncheck All check box to make it easy to a user if he wants to select all the weeks , how can i do please?
Solved! Go to Solution.
You can't select multiple items in dropdown. You can do this with combobox. Simply add an toggle or checkbox and set the OnCheck property to
UpdateContext({allSel: ["1","2","3","4","5","6","7","8"]})
and OnUncheck to
UpdateContext({allSel: []})
Now in your combobox set Item property to
["1","2","3","4","5","6","7","8"]
and DefaultSelectedItems to
allSel
You can't select multiple items in dropdown. You can do this with combobox. Simply add an toggle or checkbox and set the OnCheck property to
UpdateContext({allSel: ["1","2","3","4","5","6","7","8"]})
and OnUncheck to
UpdateContext({allSel: []})
Now in your combobox set Item property to
["1","2","3","4","5","6","7","8"]
and DefaultSelectedItems to
allSel
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
196 | |
175 | |
62 | |
34 | |
32 |
User | Count |
---|---|
342 | |
271 | |
112 | |
75 | |
59 |