meteor-tabular icon indicating copy to clipboard operation
meteor-tabular copied to clipboard

Reactive datatables for large or small datasets

Results 104 meteor-tabular issues
Sort by recently updated
recently updated
newest added

I have around 27k records in remote hosted DB. I have integrated this package to display all data and it works fine but when changing page with default per page...

Trying to fire an event when the datatable has loaded, tried the example on the datatables website: https://datatables.net/reference/option/initComplete to no avail. Any pointers please guys?

First of all thank you for your great effort and the package but it seems there is a problem whiith throttleRefresh. I have dataset that changes a lot and throttleRefresh...

Hi, I have upgraded my meteor application from 1.4 to 1.8 but unfortunately my tabular data is not working anymore. Basically I can see the first 10 records but when...

Use the selector helper seems to remove the current pagination index even if the selector has not been changed. As required, here is a [meteorpad](http://meteorpad.com/pad/bSv6KofP8NrDhA2r4/Leaderboard) to reproduce. Note: removing selector...

potential bug

Hello i used allow function as the autor mentioned to filter the other users out, so they won't sensitive data. I use like this: ``` new Tabular.Table({ name: "Teams", collection:...

How is it possible to search fields that are not part of the original collection? I've tried you suggestion with the reywood:publish-composite and dburles:collection-helpers packages, and a pure server side...

When I try to search for some particular content in datatable, the search doesn't really work. To give you an example: ``` js X = new orion.collection('x', { ... tabular:...

enhancement
will accept pull request

Upgrading to meteor 1.8, I get aldeed:tabular 1.6.1 (2.1.1 is available), has anybody upgraded their aldeed:tabular package to 2.1.1 ? Is there any compatibility problem ? *************** meteor update Newer...

Hi, I published my Collection this: `Meteor.publish("userBooks", function () { return Links.find( {field: "value"); }); ` But Tabular Table is ignoring this filter from publish. Is it correct? Thanks.