Skip to content

Releases: aslagle/reactive-table

Fix Ukrainian translation

27 Feb 02:58
Compare
Choose a tag to compare
v0.6.11

Version 0.6.11.

Change direction of non-fontawesome sort arrows

26 Feb 03:34
Compare
Choose a tag to compare

This release switches the direction of the sort arrows when not using Font Awesome to match the ones in Font Awesome - up arrow for ascending, down arrow for descending.

Allow overriding default classes on th and td elements

19 Feb 02:05
Compare
Choose a tag to compare

This release adds a cellClass option to add class to the td elements, and modifies the headerClass setting to override the default of adding the field key as a class as well. If you're using headerClass and you want the field key as a class, you'll need to add it to headerClass explicitly.

It addresses #161 - using keys that matched bootstrap classes could add unwanted styling to the table. Set headerClass and cellClass to empty strings to prevent this.

Update server-side collection when user changes

18 Feb 00:05
Compare
Choose a tag to compare

This fixes a bug (#164) with server-side publishing that did not rerun the collection and selector functions when the logged-in user changed.

Preserve _id from server-side publishing

15 Feb 23:38
Compare
Choose a tag to compare

This release fixes #151. Calling ReactiveTable.publish from the server will no longer modify the _id of the published documents.

Reactively add new fields to table

14 Feb 07:35
Compare
Choose a tag to compare

This release fixes #156. Fields can now be added to the table settings, and the table will reactively update. If you're using the columns toggles button with dynamic fields, each field must have a unique fieldId.

Polish translation

10 Feb 13:51
Compare
Choose a tag to compare
v0.6.5

Version 0.6.5.

Table column header templates

01 Feb 16:09
Compare
Choose a tag to compare

The label option to set a column header can now be a Blaze Template, as well as a string or function. Use labelData to set the data context of the template.

Change Meteor.Collection to Mongo.Collection

30 Jan 03:53
Compare
Choose a tag to compare

This replaces the deprecated Meteor.Collection with Mongo.Collection internally and in error messages. No changes in functionality.

Allow special characters in filter text, and enableRegex option

29 Jan 03:13
Compare
Choose a tag to compare

This release changes the default behavior of filtering to automatically escape special characters before creating a RegEx. This means that special characters can be used in normal filter text, and server-side filtering isn't vulnerable to RegEx DoS attacks. If you want to let users enter a RegEx as a filter, you can set the enableRegex option to true.