Yeah, that’s an option I was considering, you know… lazy developers…
M
Latest posts made by mespino
-
RE: Hide seamless dialog if I switch tab panel
-
RE: Hide seamless dialog if I switch tab panel
To contain a form that is used to configure data from the child component, for instance, if you click in a “box” the dialog should show but you can still interact with the child component. The dialog keeps on top of everything even if you switch tabs, unless I’ve misunderstood the parent property
-
Hide seamless dialog if I switch tab panel
Hi
This is my situation, I have a seamless dialog in a component that is a child of a Tab Panel, please find below a raw code explaining the organization.
<tabpanel> <childComponent> this.$q.dialog({ component: customComponent, parent: this }) </childComponent>
When I set parent with “this” what I’m expecting if I switch tab I should not see the seamless dialog because childComponent is under a certain tab, is it possible to make it work? or I need to use a different component instead of the Dialog.
Thanks