How to apply "Max Selected" to a check box list
Hi, Is it possible to apply the "Max Selected" filter to limit the number of Check Boxes that a User can select?I will appreciate your suggestions.Names Default To Here( 1 );
New Window( "Example",
cb = Check Box(
{"One", "Two", "Three"}, Max Selected(2),
Print(
"Selected: " ||
Concat Items( cb << Get Selected(), ", " )
)
)
);
RVhydrA