Skip to content

Releases: aslagle/reactive-table

Fix rendering inside a context containing 'fields'

02 Nov 19:14
Compare
Choose a tag to compare

The previous release fixed rendering the table in another context, but there was still an error when rendering in a context containing a 'fields' key.

Fix rendering inside another context

02 Nov 00:18
Compare
Choose a tag to compare

This release fixes a bug introduced in 0.5.3 that caused errors when rendering a reactiveTable that wasn't at the top level of the template's data context.

Fix conflict with 'fields' key

01 Nov 18:18
Compare
Choose a tag to compare

This release fixes a bug where table rows would be hidden when they contained a field named 'fields'. (#120)

Update deprecated template helper assignment

30 Oct 09:12
Compare
Choose a tag to compare

This gets rid of the warning "Assigning helper with 'Template.reactiveTable.getPageCount = ...' is deprecated."

Route-switching bug fix

28 Oct 01:13
Compare
Choose a tag to compare

This is a possible fix for #116 introduced in v0.5.0.

State in template instance instead of session, argument flexibility

26 Oct 20:13
Compare
Choose a tag to compare

There are two substantial changes in this release:

  • The package no longer stores state in Session variables. Everything is stored in the template instance data. As far as I know, the only functional difference is that table state will no longer persist across hot code pushes.
  • All settings can now be passed to the table either as separate named arguments, or as part of the settings object argument.

In addition, there is a new setting for the id of the table element, and the 'group' setting for sharing state between tables is gone. Everything else should be backwards-compatible.

Please report any problems in the github issues.

Filtering number fields

16 Oct 02:35
Compare
Choose a tag to compare

Numbers entered in the filter box will now match numerical fields as well as strings.

Hide rows per page only

11 Oct 13:44
Compare
Choose a tag to compare

This release adds a 'showNavigationRowsPerPage' option to hide the rows per page control while still showing pagination controls (all navigation can still be hidden with 'showNavigation').

Style improvements: class argument, filter input spacing

07 Oct 02:25
Compare
Choose a tag to compare

This release adds a class argument to control the classes on the table element. The table will have the class 'reactive-table' and either the contents of the class argument or "table table-striped table-hover" if no class is specified. Note that class is a separate argument to the template, not part of the settings argument.

The filter input is also now in a form group, which adds spacing between the input and the table.

See #109

Fix overlap of navigation with lower elements

04 Oct 20:45
Compare
Choose a tag to compare