Amy Slagle
Amy Slagle
I'm not sure what advantages this would have over lint tools like SwiftLint, TSLint, etc. Those can usually be run from the command line or integrated into IDEs, so you...
Sorry, the filtering's only set up to work with one column at a time.
Glad you figured something out!
The table can only sort based on one of the columns, but you can add `hidden: true` to it if you don't want it to show. You will have to...
You'll need to use [custom filters](https://github.com/aslagle/reactive-table#creating-your-own-filter) for this. I have an example of a date filter here: https://github.com/aslagle/reactive-table/blob/master/examples/advanced-filters/date_filter.js and https://github.com/aslagle/reactive-table/blob/master/examples/advanced-filters/date_filter.html You can set the filter to gte or lte instead...
Yes, you can put `filterOperator: "$or"` in the settings, either on the client or server depending on if you are using server-side filtering.
Sorry, no - it's one setting for all the filters.
It's automatic, it only returns the rows for the current page.
Hi @xMaarf, I think your problem might be that you're using `Adverts.find().fetch()` in your `table` function. This returns an array rather than the Meteor collection object so the table won't...
Sorry, the reactive table publication will only give you one page at a time, so you'll have to write your own publication for exporting.