Page 1 of 1

ListViewGadget multi select

Posted: Sun Mar 12, 2023 12:07 am
by itzybitzyspider
Hi,

I have a ListView gadget with mutli select and a EventType Change binded

Code: Select all

GadgetId = ListViewGadget(#PB_Any, 5, 15, 185, 100, #PB_ListView_ClickSelect)
BindGadgetEvent(GadgetId, @SelectFilters(), #PB_EventType_Change)
With multi select, I only get the current selection via

Code: Select all

 CurrentSelection.s = GetGadgetText(EventGadget())
Can I get the list of selected without going through the entire listview and getting gadget's state?