You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am looking for some parameter to limit the selections, I just want user to select two values, i need the same control like this, with search box to search the list.
It should be similar to something like as follow. but change event is not working.
$(".multiselect").multiselect({
change:function(){
if($('.multiselect').val().length > 2 ){
// disable selection
}else{
// enable selection
}
}
});
The text was updated successfully, but these errors were encountered:
I am looking for some parameter to limit the selections, I just want user to select two values, i need the same control like this, with search box to search the list.
It should be similar to something like as follow. but change event is not working.
$(".multiselect").multiselect({
change:function(){
if($('.multiselect').val().length > 2 ){
// disable selection
}else{
// enable selection
}
}
});
The text was updated successfully, but these errors were encountered: