Questions tagged [ember-table]

A fast, lazy rendered, easily extensible table built with Ember.js.

is an open-source library for data tables based upon framework. https://github.com/Addepar/ember-table

It provides many features that a modern data table is expected to have, including:

  • Fixed headers and footers
  • Fixed columns
  • Row selection
  • Row sorting
  • Tree tables (with group collapsing)
  • Column resizing and reordering
  • Nested subcolumns (e.g. to create pivot tables)
  • Scalability - Can render thousands of rows performantly

By default, Ember Table is a feature complete data table solution that you can drop in to your app. Team aims to support most standard data table features, and provide escape hatches where possible.

Ember Table is also a relatively lightweight table solution, currently weighing in at 22kb (minified and gzipped) with plenty of extra weight to shed. Compare that to standalone table solutions like (152kb) or (196kb) and you can see how a table solution that integrates with the framework directly can save quite a few bytes.

Read more: https://opensource.addepar.com/ember-table/docs/why-ember-table

35 questions
1
vote
0 answers

ember.js how to automatically detect delta of models

I am in early stages of learning Ember.js. Particularly I am interested if it can tell me the 'deltas' that have been applied to the Model due to the user modifications/additions via the UI I need to allow users to change values of checkboxes,…
V P
  • 845
  • 10
  • 28
0
votes
0 answers

Assertion Failed: targetValue must be greater than or equal to 0

When I use ember-table, it works well in application.hbs, but if the same code used as component, I got targetValue Assertion Fail, is there anyway to use EmberTable in component? application.hbs test-comp.hbs
s.w
  • 17
  • 4
0
votes
1 answer

Ember-table shows index on the header

I am using ember-table but have a weird behavior. It automatically adds index next to my header title. But after I click one of the header to sort the table, the index will disappear as I want. How do I get rid of the index in the first place.…
rj487
  • 4,476
  • 6
  • 47
  • 88
0
votes
1 answer

Using ember computed property(filter) to filter model and using ember-models-table 2 for displaying in table format. It gives no record to show

Trying to display user details using ember-models-table addon. Also wanted to filter the data using a isActive field .Am using ember computed property for that (filter). First time when the page is loading am getting the correct result.But when i…
Sow Hari
  • 35
  • 7
0
votes
1 answer

typescript error TS2688 after installing ember-table. Can I not ignore those?

I am using ember with typescript. After installing ember-table, started getting the errors below - error TS2688: Cannot find type definition file for 'antiscroll'. error TS2688: Cannot find type definition file for 'jquery-mousewheel'. error…
Abhishek
  • 478
  • 6
  • 16
0
votes
0 answers

How to build a lazy-loading table in Ember with a fixed first column and header row?

I am trying to build a table in Ember 2.0 with: up to a million rows (so I need lazy rendering) a fixed header row a fixed first column that scrolls vertically content columns that scroll vertically and horizontally A good example of this is the…
Sandy
  • 1
  • 3
0
votes
1 answer

Does Ember-table support for ember 2.3.0?

Ember-table by Addepar Inc., is really cool but it is not supported in Ember 2.3.0. Is there any way to make it work in Ember 2.3.0 app? I tried Ember-cli-ember-table also. But it also didn't work for me. If you guys know the proper installation…
0
votes
2 answers

multiple tables on one template

When I render two or more tables on same template I get several deprecations like this one DEPRECATION: You modified (mut bodyContent) twice in a single render. This was unreliable in Ember 1.x and will be removed in Ember 2.0 [deprecation id:…
Stefan Kostic
  • 262
  • 4
  • 14
0
votes
1 answer

ember-table even odd color strip

I get stuck while adding even/odd color strips to table rows in ember-table. Regular CSS selector :even :odd won't work because the lazy table will reusing existing limited number of row elements, so the first element in DOM may not be the first…
Ray Wu
  • 993
  • 16
  • 34
0
votes
1 answer

Column of links in Ember Table

Lets say that I have a model with two attributes: name and url. If I want to build a column of links like this name how can I do it? as far as I know, using contentPath or getCellContent only allow me to send one of those…
0
votes
0 answers

Add 'Blink' feature in Ember Table

Here are issues if click on an updating column (to sort) blink feature does not work. if i try to filter, blink feature goes crazy. i am not sure if there are better ways to implement 'Blink'. Because i'm not sure the way i keep 'previousValue'…
Arosha
  • 1,311
  • 2
  • 16
  • 22
0
votes
1 answer

How to apply 'Blink' feature in Ember Table?

in Ember Table, I need to change style of a cell with the change of particular cell content. I need to add color to cell with value update (that I have already done) and remove styles after 1 second (that I want to do). I have called setTimeout…
Arosha
  • 1,311
  • 2
  • 16
  • 22
0
votes
1 answer

ember-table: Why is headerCellViewClass not respected?

UPDATE You finally decide it's time to post on SO, you do so, and then you find a stupid error. Taken care of. Remove -> from Ember.Table.HeaderCell.extend ->. I am attempting to customize my header cells for sorting purposes using the example in…
0
votes
0 answers

Lazy Loading using ember table while calling the RestfulService

Using ember-table , can do lazy loading . Thought it may be issue while calling the restful service. A table built using Ember.js that lazily renders rows.Ember Table allows you to handle very large data sets by only rendering the rows that…
0
votes
1 answer

How to form the following table with Ember?

Name Date Date-1 Date-2 Date-3 ------------------------------------------------------------------------------------------ Header1 Header2 Header1 Header2 Header1 Header2 …
xcode
  • 1
  • 1