Amy Slagle
Amy Slagle
I added a new `disableRowReactivity` option, so that you could set both `disableRowReactivity` and `disablePageCountReactivity` to disable all reactivity. I'll publish a new version once I can get my tests...
Also, I made this a server-side option. For your client-side on/off switch, you'd need to call ReactiveTable.publish twice on the server, once with the disable options true and once with...
Okay, I published it in version 0.8.34. I couldn't fix the node-gyp error, but I got an older version of the meteor tool to run by moving my package code...
The table is always sorted by some column, but you could use a hidden column for _id as the default sort if you don't want it to be in the...
Unless your data's in an array, I don't know what it means for it to be already sorted. You can't rely on the sort order from Collection.find unless you specify...
you should be able to get the same sorting by giving the table the collection and adding sortOrders to the appropriate columns. passing in collection.find is more useful for filtering...
If you like datatables you'd probably prefer the aldeed:tabular package. But to answer your question, you don't have to make a filter if you didn't have one before. If your...
Yeah, you'd need to find the selector from the style that's currently hiding them and add a more specific selector that shows them - putting .reactive-table-navigation before it might work.
Cool, I like the idea of using rowsPerPage for this. I'm not sure about the best way to detect scrolling but your way looks fine. It might not work more...
There's not a good way to access it outside the table, but there's a template helper called 'getRowCount'. Since you're already using the template instance maybe it's possible for you...