Questions tagged [aldeed-tabular]

Aldeed Tabular is a Meteor package that creates reactive "DataTables" in an efficient way, allowing you to display the contents of enormous collections without impacting app performance.

From the meteor-tabular GitHub README:

  • Fast : Uses an intelligent automatic data subscription so that table data is not loaded until it's needed.

  • Reactive : As your collection data changes, so does your table. You can also reactively update the query selector if you provide your own filter buttons outside of the table.

  • Customizable : Anything you can do with the DataTables library is supported, and you can provide your own publish function to build custom tables or tables than join data from two collections.

  • Hot Code Push Ready : Remains on the same data page after a hot code push.

8 questions
2
votes
0 answers

Meteor Aldeed:tabular - unable to render buttons extensions

I have followed the instructions as mentioned in the Read Me regarding use of extensions with the tabular table link. However, doing so does not get me the extra set of buttons on my table. I was wondering if I was doing something wrong. If someone…
blueren
  • 2,730
  • 4
  • 30
  • 47
1
vote
0 answers

Meteor Tabular not reacting to ReactiveDict's values changing

I'm using the great Tabular package. https://github.com/Meteor-Community-Packages/meteor-tabular. I'm making use of the client-side selector helper to Reactively change my table by having Server modify the query for my dataset. I have multiple HTML…
user2402616
  • 1,434
  • 4
  • 22
  • 38
1
vote
0 answers

Meteor tabular tables - multiple tables showing same data

I'm using multiple tabular-tables in Meteor to display sets of partitioned data on the same page. Each occurrence of the tabular appears in a separate template instance, but they all refer to the same table. I have a template that looks as…
Zack Newsham
  • 2,810
  • 1
  • 23
  • 43
0
votes
1 answer

TypeError: Tabular.Table is not a function

I'm getting 'TypeError: Tabular.Table is not a function' while working with aldeed:tabular. Here is the detailed…
webmagnets
  • 2,266
  • 3
  • 33
  • 60
0
votes
1 answer

How can you pass a Blaze Template to the Column Title in Aldeed:Tabular?

In the column I'm displaying YES/NO values as red/green Fontawsome icons. I'd like the column heading to also be the same icon, and not text work. The aldeed:tabular allows Blaze templates to be passed when displaying a cells contents.... but is…
Philip
  • 71
  • 5
0
votes
1 answer

Meteor, mongodb - canteen optimization

TL;DR: I'm making an app for a canteen. I have a collection with the persons and a collection where I "log" every meat took. I need to know those who DIDN'T take the meal. Long version: I'm making an application for my local Red Cross. I'm trying to…
0
votes
3 answers

Display only users with a specific role in meteor-tabular table

My site allows users to apply by connecting their google account, as soon as an account is created they're given a "pending" role (using alanning:roles package). I would like to have a table for admins to see when new applicants have applied, from…
U54
  • 122
  • 1
  • 9
0
votes
2 answers

How do I get translated column headers with Meteor and aldeed:tabular?

I'm running into the same problem as issue #53 of aldeed:tabular. When defining the table as suggested in the documentation, it is too soon to invoke a translation function (TAPi18n.__ or other), since the I18N variables are not yet set. What is the…
DomQ
  • 4,184
  • 38
  • 37