Bill Dami
Bill Dami
@mixonic here is the issue demonstrated in one of our apps: https://drive.google.com/file/d/1DZzWRaqArfTzebrvaa94wazHhkiYzDXa/view?usp=sharing So in this scenario, the `` itself is the scrollable container, and there is a `position: fixed` element...
@bantic @mixonic my bad, I thought I made that link public, this should be accessible now: https://drive.google.com/file/d/1DZzWRaqArfTzebrvaa94wazHhkiYzDXa/view?usp=sharing
@offirgolan No problem! Yeah it definitely didn't feel like the best solution as I was implementing it, but as I mentioned in the OP, I more intended it to be...
@offirgolan Yeah definitely agree that it would need to be done in a way that doesn't cause any unwanted side effects. If you weren't able to get to this I...
@offirgolan Here's some of the relevant bits within my generic table component which wraps ember-light-table and is used by various controllers/templates in my app: ``` javascript export default Ember.Component.extend({ eventBus:...
@offirgolan Any thoughts based on the my current implementation provided in my last comment?
@offirgolan oh wait, you're saying the row object will already look for a `selected` property on the associated model/content to use as its selection state? I thought the `row.selected` property...
@offirgolan That makes alot more sense now, I think that'll remove the need for all those `setSelectedRows` calls and the use of `Ember.Evented` to propagate model selection changes down to...
> The row object is actually an object proxy. If a selected property is > present in the content ( i.e. Your model), then it will use that. @offirgolan After...
Looks like this PR was opened awhile ago...is this repo not accepting PRs or is it no longer being maintained @michalsnik ? @jamescdavis this looks great, any thoughts on also...