Releases: grese/ember-bootstrap-table
Sticky Headers
Added disableSortDirection option to table
Added ability to disable sorting direction change by setting "disableSortDirection" to true. This will cause the sortAscending property to not be updated when a user clicks a column header (the sorting direction of the table will always remain the same.).
Refactored Table
Refactored the table component to be template-less. It now uses a combination of Em.Views, and Em.ContainerViews to construct the table instead of nested HBS #each helpers. This should result in faster rendering/sorting speeds, and more control over the table itself. YAY!
v0.0.9
v0.0.8
v0.0.7
Added cellClassName, and headerCellClassName to column configs. Also, added sort function to column config, and customSortAction property to override the default sorting. Now sorting by column index instead of property name.
Also added tooltips to header cells.