I have an app page with a series of buttons, I would like to pass through the value of the button to a second listview page. On that page there are Choice Chips, which act as a filter on the list.
In my example the buttons are names of rooms, e.g. bedroom. So when it navigates to the listview page, bedroom is selected in the Choice Chips, and the list is filtered.
I have this working, but would like to allow the Choice chips to be multiselect, so that people can manually select additional rooms. (To still pass a single value, but allow multiselect once passed)
To do this I think I have to set the passed parament to be a string list (is this right?), but when I do that, there appears to be no option to set a text value, only to select variable values, and not a specific string.
Is there a way to do this that I'm missing?