Hi.
I created jqxListBox objet by this code:
$("#test").jqxListBox({ source: source, checkboxes: true, width: 170, height: 80, theme: theme });
source look like that:
var source = [{"label":"a","value":"1"},{"label":"b","value":"2"},{"label":"c","value":"3"},{"label":"d","value":"4"},{"label":"e","value":"5"},{"label":"f","value":"6"}];
How can i get the selected items?
The “getSelectedItems” methods always receive me one item.
var items = $("#test").jqxListBox('getSelectedItems');
Thanks!