Amy Slagle

Results 163 comments of Amy Slagle

I can't reproduce this by updating a value from the js console or the mongo console, and I don't know what would cause it. Maybe it's related to how the...

Filtering is done either client-side or server-side depending on whether you're using ReactiveTable.publish on the server. If you're only using reactive-table to display data that's already published to the client,...

Are you sure the problem is related to the encryption? There could be something else wrong with your field or filter configuration.

If you aren't using ReactiveTable.publish on the server, it will use client-side filtering. Write your own Meteor.publish and Meteor.subscribe to get your collection onto the client, and use the Collection...

Sorry, I have no idea what the problem is. If you have steps to reproduce it or an example app with the problem I can take a look.

You're right, this package can only filter on data in the original collection. You'd have to change your data so that the username is in the user profile if you...

This sounds like a bug, but for now there is the isVisible option instead of hidden. isVisible must be a ReactiveVar, and whenever you set it the column visibility will...

I would recommend setting up a ReactiveVar in your template that you set when the dropdown changes, and use in the reactive table settings.

This gives me a good idea for a new demo - a reactive table listing table libraries and their features :) I'll work on that later, but to answer your...