Hello, I am filling a ListBox with a source property such as:
var source=[
{label:'item1', value:'12345678',group:'first'},
{label:'item2', value:'1234567',group:'first'},
{label:'item3', value:'123456',group:'first'},
{label:'item4', value:'12345',group:'second'},
{label:'item5', value:'1234',group:'second'},
{label:'item6', value:'123',group:'second'},
];
$('#myel').jqxListBox({source:source, checkboxes:true, width:'200px',height:'250px'});
What happens is that the widget adds a checkbox for the groups as well.
Is this a bug or I am not doing something correctly?
Cheers,
Rex