michael / multiselect

jQuery UI Multiselect Widget
http://www.quasipartikel.at/multiselect
MIT License
557 stars 208 forks source link

handling change events #82

Open mnowotka opened 13 years ago

mnowotka commented 13 years ago

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!

acatighera commented 13 years ago

+1

adam-p commented 13 years ago

+1 (The change mnowtka suggested is working for me in the meantime.)

h0lg commented 12 years ago

+1 too