Amy Slagle
Amy Slagle
The value from the DOM isn't reactive, so any reactive computations won't automatically rerun when it changes. Unlike rowsPerPage or currentPage you can't change it, so I don't have it...
If you pass in a ReactiveVar for ready it should work to use it in a reactive computation. Maybe make sure it's initially set to false?
It depends on what you're trying to do with it. Somewhere in your code create a new ReactiveVar(false), and in the table settings pass that in as ready. Then you...
How were you expecting it to work? It stays false until the table is initially loaded, but it doesn't go back to false when you change the page or the...
ready only works if you're using ReactiveTable.publish on the server. If you're doing that and it's staying false there must be a bug somewhere (and I'm surprised the table even...
You have to stop the subscription for the prior window for meteor to remove the documents.
Yes, that should work.
I have no idea how that would happen - it's definitely not intentional.
Sorry, but I don't think it's possible with ReactiveTable.publish. It's only set up to work with a single collection and a selector. You'll need to write your own publication for...
Sorry, it's internal to the package and there isn't a way to access it right now.