Bootstrap Multiselect widget

0
I have a dropdown which uses bootstrap multiselect widget taken from the app store. On loading the page, I want all the dropdown items should be selected. Is there any way we can do that?
asked
1 answers
1

Soumya,

Since this widget shows what items are currently in the reference set that the widget is pointed to, you can do this as follows:

  1. Create a microflow to open this page
  2. In the microflow, retrieve all of the values that *could* be in the reference set (i.e. all of the objects in the entity you are selecting)
  3. Now populate the reference set with the list you just retrieved via a Change action in the microflow
  4. The last step in the microflow should open the page

You will see all of the values selected on the page.

Hope that helps,

Mike

answered