ReactiveArray
ReactiveArray copied to clipboard
If an array element is modified by reference (or an object inside the object), AKA without using the array methods, will this library catch the change?
I want to synchronize a database array with a client array, so I want to do something like... ``` Template.dayModal.onCreated(function(){ this.myAvailabilities = new ReactiveArray(); var self = this; this.autorun(function(){ var...
https://github.com/ManuelDeLeon/ReactiveArray/issues/4
To get an item reactively from a ReactiveArray, if I understand correctly, I'm supposed to write `myarr.list()[]`. However, I think using `myarr.get()` for reactivity would be much more in line...
Kindly consider seizing the opportunity to add reactive versions of two convenience methods that are missing on native arrays. I'd be happy to send a pull request. ``` coffeescript first:...
I have ``` js var arr = new ReactiveArray([ {id: '1', name: 'a'}, {id: '2', name: 'b'} ]) ``` I would like to remove by `id = 1`. please help...