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

single and double click event handlers - singleDblClick builds on the dblClick feature

Open nphias opened this issue 8 years ago • 0 comments

addresses: Feature request 286

ability to have event handlers for both single and double click - singleDblClick builds on dblClick by adding two more event handlers .. beforeSelect and beforeDeselect example usage:

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

nphias avatar Dec 10 '17 23:12 nphias