I use a meteorite. I am wondering if theres an abridged way of doing batch updates before updating the DOM.
For example, I want to update some records, more than one (all at once):
Collection.update(id1,{..}) Collection.update(id2,{..}) Collection.update(id3,{..})
The problem is that 3 items are updated separately. Therefore, when the DOM in my case was redrawn 3 times instead of once (with all 3 updated entries).
Is there any way to keep ui updated until all of them are updated?
Akshat
source share