Open frank1340 opened 8 years ago
The only thing that works right now is a specific array index, like notes.0.remindersActive
. There's no way to filter for something anywhere in the array. Do those work in mongo selectors?
Why is that, in regards to reactive-table?
If it's possible in mongo I don't think there's any reason it couldn't work in reactive-table - I never needed it so I didn't handle this case when I wrote the code to create filter queries.
It is certainly possible in Mongo. I wanted to make sure I was not in error with my efforts.
On Tue, Apr 5, 2016 at 10:16 PM, Amy Slagle notifications@github.com wrote:
If it's possible in mongo I don't think there's any reason it couldn't work in reactive-table - I never needed it so I didn't handle this case when I wrote the code to create filter queries.
— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub https://github.com/aslagle/reactive-table/issues/376#issuecomment-206080969
is this on the roadmap?
I'd be happy to accept a pr for this, but I probably won't get around to it.
Hello,
this.notesFilter = new ReactiveTable.Filter('practice-notes-filter', ['notes.$.reminderActive']);
This does not work, nor does 'notes.reminderActive'. What am I doing wrong? Thank you.