multiselect
multiselect copied to clipboard
handling change events
When you add or remove item, change event of underlying select element should be fired. Just add following line to _setSelected method: that.element.trigger('change');
and for draggable elements define stop function: stop: function(event, ui) {that.element.trigger('change');},
thanks!
+1
+1 (The change mnowtka suggested is working for me in the meantime.)
+1 too