ember-table
ember-table copied to clipboard
The `widthConstraint` option decides how the table fits its container. It makes sense to set it on the table and not on the header. `widthConstraint` is now available to the...
Hello ! It would be a seamless user experience to have a **separator (freeze columns indicator) line** that would span across all the rows and that **can be dragged-and-dropped on...
## Motivation There are several costs to ember-table supporting legacy platforms, and we're ready for a major release. * Contributors keep stumbling on the legacy use of `sendAction` in this...
First of all, great work on the add-on. Keep doing the great job. It is a very common case where in, a particular component that is using the `ember-table`, has...
There is a section on [sorting](https://opensource.addepar.com/ember-table/docs/guides/header/sorting) and technical API doc on [ember-th/sort-indicator](https://opensource.addepar.com/ember-table/docs/api/components/ember-th/sort-indicator). From the composability perspective and utility frameworks (like tailwindcss) I think it would be good to have an...
While a table may generally want to use the ember-table row selection features, sometimes we want some rows to be selectable and some to not be. For example, I may...
Great work on the add-on. Keep doing the great job. There are cases where the data `@rows` that is bound to the `ember-table` is **empty**. Example: when applying a particular...
The description says it can handle over 100K items without any performance issues. I want to display the files in a directory but only the first 3 rows render and...
cellComponent doesn't appear to be working with Ember Octane components: routes/mytable.js ``` model = { columns: [ { name: "Foo", valuePath: "foo" }, { name: "Test", cellComponent: 'test' } ],...
In some layouts, there may be fixed page elements (e.g. a fixed nav bar) above or below the table, and when scrolling the table, the sticky column headers/footers are hidden...