Adam Bedford

Results 31 comments of Adam Bedford

Any movement on 'productizing' one of these solutions?

Any movement on this?

@webark Does this mean that there will be different semantics for template-only glimmer components? i.e. it'll be `styleNamespace` rather than `this.styleNamespace` since there's no `this` without a backing class?

I am mixing in `ApplicationRouteMixin`. The `sessionInvalidated()` method gets called if I override it, but `window.location.reload(true)` doesn't seem to do anything. And if I don't override `sessionInvalidated()`, nothing happens after...

I'm working around this currently by invoking the `navbar.collapse` action from each dropdown link (using https://github.com/Kuzirashi/ember-link-action) but I agree that a navbar dropdown link should close automatically.

I'm interested in the best approach for this too. Particularly, @buschtoens's suggested use case where an initially provided model is augmented with infinite scrolling. I'm also trying to figure out...

@buschtoens Thanks for your suggestions, I'll definitely look into using e-c tasks for this. My use case is, I think, a bit complex and I'm considering one of two options:...

@buschtoens How can the table observe whether the column `hidden` property is set to re-render the table or is it supposed to do that by default?

For reference, here's my implementation of the column selection. This may also help @vishalpareek: ```javascript init() { this._super(...arguments); let table = new Table(this.get('selectedColumns'), this.get('model'), { enableSync: this.get('enableSync') }); let sortColumn...