12-21-2012 08:10 AM
I have ListView which uses a LitItemProvider that creates items which are derrived from CustomControl and ListItemListener.
When I have no items selected ListView::selectionItems() returns 0 as expected, but when i have one or more items selected it returns bogus values. For instance I only have two items in the list and when they are both selected it returns 4.
Is this a known bug with ListView::selectionItems() or am I doing something wrong.
Any feed back apprciated. I am using the Gold Canidated by the way.
12-23-2012 12:38 AM
Try using
listview.selectionList();
That works for me.
12-24-2012 01:40 PM