sorry i don't know how to add filter in my requirement while selecting combo box there is a selecting number of devices like 2,5,10,50,100,200,300..... in my case there is no problem in combo box but the problem is while selecting more than 100 it display 100 devices while selecting device its taking arround 4 seconds
this is my jquery
$("area_device_id").selectable({
filter:'li',
selected:function(event, ui){
var data = $(ui.selected).attr('id');
var index = $.inArray(data, selectedDevices);
ifindex == -1) {
selectedDevices.push(data);
}
the above filter li is not working.
restricts the selectable-classes to the top-level-element means what????