Is there an easy way to reset the height after updating the ember-table?
I'm adding items to the table on the fly and want to show them in the table as I add them. The bindings work, but my new rows are all hidden due to the table's set height and overflow: hidden.
Here's a jsbin. Two seconds after page load, I add a row and you'll notice the height of the table remains set, and you need to scroll the table to view the new row.
UPDATE
Updated jsbin: "works" but feels very hacky
I've dug through ember-table's javascript, found a couple properties to set, and got it "working" by overriding one css style.
A couple remaining issues:
It looks like something is going on with the scrollbar now though. After the change, the scrollbar appears, but isn't going to work since the content is as high as the container. There seems to a lot of javascript around the scrolling aspect of it all.
Feels really hacky. This kind of functionality seems like it should be a configuration setting (or even the default functionality) for ember-tables