multi-select icon indicating copy to clipboard operation
multi-select copied to clipboard

Feature request - separate event handlers for click and dblclick

Open nphias opened this issue 8 years ago • 0 comments

I would like to be able to double click an item to put it in the selected or deselected list.. followed by the event handler afterSelect/afterDeselect. (The current code does this.)

but also single click an item and call event handlers beforeSelect / beforeDeselect so that i can display info about the item in another section

$('#my-select').multiSelect({
            dblClick: true,
            afterSelect: function(values){},
            afterDeselect: function(values){}, 
            beforeSelect: function(values){}, 
            beforeDeselect: function(values){}
       })

nphias avatar Dec 09 '17 21:12 nphias