Amy Slagle
Amy Slagle
The table won't do anything automatically, but you can store the checkbox states somewhere and update the state when a box is checked or unchecked, and use the states when...
Sorry, I don't have an example of that. You can see [this example](https://github.com/aslagle/reactive-table/blob/master/examples/saved-state/leaderboard.js#L8) of how to create a ReactiveVar. Instead of creating one ReactiveVar like that example though, you'd need...
Hi @ClarenceL, thanks a lot for working on this! This is a very useful feature and I like the way it's going, but I do have some more comments. First,...
For the other arguments, I've used ReactiveVar so the developer can set up a reactive function that persists the changes - to a Session variable, local storage, a database, or...
You don't need to use a Session key, you just need to let the developer have access to the ReactiveVar.
You're right, it's not an ordinary subscription. It actually starts a new subscription every time the filter (or the sorting or the page) changes, and waits until the new one...
There is a `ready` option now, that can be used to decide whether to display a loading animation in other templates. You pass in a ReactiveVar for it and it...
You're right, $and and $or don't work inside filters. As a workaround you can create multiple filters and set the `filterOperator` argument to reactiveTable to $and or $or. It won't...
The custom filtering isn't very sophisticated, but if the values are strings you can just make one string with all the values you want to match. So if you wanted...
I'm having the same problem trying to use this in a package-based app. The auth token only works when an accounts package is included directly in .meteor/packages. If it's only...