Amy Slagle
Amy Slagle
Officially no, not yet, but for now if you put an id in the settings it will save the filter until you refresh the page. Be careful updating if you...
If it's a bug in meteor you should report it to them :(
You can do this with normal css: ``` .reactive-table tr { height: 20px; } .reactive-table { border-color: green; } ```
I haven't gotten around to trying react with meteor yet, but it seems like there must already be good table components for react, and maybe they wouldn't be as hard...
Thanks @csillag !
Interesting... reactive-table sets its own skip and limit based on rows per page, and in order to do that it converts the cursor to a collection by listening for changes,...
Yeah, the reactive table filters only work with the collection itself. If you denormalized your data so that there was a field with the number of tickets left, you could...
reactive-table has options to set classes on the table, th, tr, and td elements. I see that materialize has a 'responsive-table' class. I've never used it, but you could try...
If you don't need it to update when the Session variable changes, you can call the function and set sortOrder to its output. But the ReactiveVar option is the only...
The internal settings object isn't a reactive var, it's a plain object that contains a bunch of reactive vars. I agree having an API would be useful, but it would...