Don

Results 81 comments of Don

Suggestion - refactor `reIndex` with this behavior rather than making another function. Imho, reIndex() should re-index the full HTML without the List.js specific filtering applied.

Also for your consideration, your item reload function does not appear to load the new HTML. This logic will fetch the fresh HTML from the DOM, reload the values and...

The add/remove methods should not change the array in place... see https://rails.lighthouseapp.com/projects/8994/tickets/360-dirty-tracking-on-serialized-columns-is-broken

A work around exists using the `if` feature... ```ruby multisearchable :against=>[:serial_number, :model_number], if: :has_multisearchable? def has_multisearchable? serial_number.present? or model_number.present? end ```

See https://github.com/phusion/passenger-ruby-websocket-demo/issues/2, appears WebSockets are still not working under Apache mod_passenger in 5.0.18? (It's very possible that I am doing something wrong in my Apache .conf) Thanks for Passenger -...

:+1: It would be nice to have a cache_key type of control over the expiration of the cache at the controller level.

Suggestion - because we have the "refresh" event which can refresh the partial, a simple flag to inhibit the initial load of the partial would allow the developer more flexibility....

Yes - this makes sense. I might be misunderstanding the toggle feature. If we do not specify `interval` the toggle event would not cause it to poll? (In many cases...