@Walter_C Thanks for previous solution, Can you please help me with this also:
How to choose all values of choices by default in multiselect widget?
For ex:
Below query I used to create multiselect widget with name test, I have default value as "val1",
`create widget multiselect test default "val1" choices select * from (values ("val1"), ("val2"), ("val3"))`
but I want all values to be selected/checked by default:
for that I tried "*" and "" and "All" as default value but nothing worked:
`create widget multiselect test default "*" choices select * from (values ("val1"), ("val2"), ("val3"))`
`create widget multiselect test default "" choices select * from (values ("val1"), ("val2"), ("val3"))`
`create widget multiselect test default "All" choices select * from (values ("val1"), ("val2"), ("val3"))`
So, what I have to choose as default value, to select/checked all values by default as we have 150 values, and it is not possible to select 150 values from multiselect dropdown one by one?