How to set value of Multiselect property to a default value when there are no items to select

Hi,

I have a requirement to display a multiselect property to a default value say “UNAVAILABLE” when there are no items in this multiselect property to select. As, multiselect is a PageList/PageGroup property I am unable to set it to a default value. Can somebody help me to achieve this?

Thanks,

Sakhib Hussain

@SakhibHussain you can set pagelist. PxResults(1) = “unavailable”

But better approach would be to show a label “there are no items”.

Based on the count in the pagelist, you can either display multiselect or no items label.

@Anoop Krishna Thanks, this helped