Will Howell

Results 30 comments of Will Howell

Do either of you have a reproduction? The class should always be matching the current position of the popover. https://stackblitz.com/edit/sat-popover-issues-xnnclg I do see how adding a custom container class could...

Ah yep, this is not intentional - thanks for the report! I'm afraid it'll have to bump a major release since it seems like a bug folks could accidentally be...

@rosslavery I take that back haha. The popover doesn't exist in the DOM until opened, but is instantiate and lives in memory once declared. That's consistent with what I was...

I'm afraid I don't see how they'd end up interfering with your theme. [Those styles are defined here](https://github.com/angular/material2/blob/master/src/cdk/overlay/_overlay.scss) and they're pretty well namespaced. In theory, we could make popover users...

Alternatively, what if when `displayWith` isn't defined, the trigger displays the MdOption's `viewValue` instead of `value`? That, or as @rafaelss95 suggested, the MdOption is passed to `displayWith`, so the user...

@jelbourn I gave it a shot by providing a `MultiSort` directive that extends `MatSort` and uses a collection of active `MatSortables` instead of a single one. However, this method in...

@pueaau for a workaround 1. create a simple dialog component that includes only an input and closes on enter 2. attach click listener to editable column cell 3. open dialog...

@pueaau I don't know, it might not be *so* hacky... ```html {{row.name}} ``` Alternatively, use ComponentFactoryResolver to instantiate the inline editor component inside a cell as needed. Or you could...

Here is a demo of a workaround closer to the spec: https://stackblitz.com/edit/material2-beta12-es19ub?file=app%2Fapp.component.html It does require a [3rd party component](https://github.com/ncstate-sat/popover), but it might inspire a good temporary solution until an official...

FWIW we've also opened up the popover component we're using internally. It's only depends on the CDK and has a very flexible api. https://github.com/ncstate-sat/popover https://stackblitz.com/edit/sat-popover-examples Hopefully this will help carry...