ember-table
ember-table copied to clipboard
ember-cli - v3.28 - **message: ember-classy-page-object needs to depend on ember-auto-import in order to use ember-cli-page-object** ``` ERROR Summary: - broccoliBuilderErrorStack: [undefined] - code: [undefined] - codeFrame: [undefined] - errorMessage:...
I have a number of acceptance tests for my application that `await` a `click` on an ember-table header cell to activate column sorting and then `assert` against the table contents...
Is there any plans (or is it possible) to allow for sticky column headers (and footers) for non-fixed height tables, i.e. tables that do not have their own scroll container,...
it looks like ember-cli-addon-docs has been removed from the dependencies. couldn't find a reason for that, but due to this, the dummy app is not working anymore
Building atop https://github.com/html-next/vertical-collection/issues/362 and https://github.com/html-next/vertical-collection/pull/372, I propose a 5.0 release of Ember Table. * Support Ember 3.12+ * Require vertical-collection 4.x * Change various calculations which rely on browser APIs...
We've recently begun using ember-table in several client apps (and quite liking it, thanks for all the hard work!). One thing we've started noticing after we introduced it was that...
I upgraded ember-table, and now when I run ember build I get the following error: ``` Could not find the default SASS implementation. Run the default blueprint: ember g ember-cli-sass...
This fixes https://github.com/Addepar/ember-table/issues/578 ``` ```
`offsetHeight`, per MDN, is an API which returns _integer_ values. This makes is inappropriate to use in calculations of current UI scale (usually from a transform) as it rounds any...
I am trying to have sorting enabled on my table. When a user clicks on a header, the client does an API request to fetch sorted data based on the...