aslagle / reactive-table

A reactive table designed for Meteor
https://atmospherejs.com/aslagle/reactive-table
Other
328 stars 137 forks source link

Caption to Table #430

Closed monasha-s closed 8 years ago

monasha-s commented 8 years ago

How to provide caption to the Reactive Table? I need the caption as when exporting the table using caption I can rename the file. Is there a way to add it?

aslagle commented 8 years ago

Interesting, I hadn't heard of that tag before. The easiest thing would be to insert it with jquery after the template is rendered, like $('.reactive-table thead').before('<caption>My Caption</caption>'). That way there's no need to change the package.

monasha-s commented 8 years ago

Thank u, that worked