boris-jenicek / ngx-awesome-popup

🚀 Open-source - The world's easiest, most powerful Angular dialog modal framework. Confirmation box, Alert box, Toast notification, Cookie banner, Any dynamic dialog content.

Home Page:https://boris-jenicek.github.io/ngx-awesome-popup/#/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

matTooltip does not work inside fullscreen dialog ?

gotenks opened this issue · comments

I have a dialog, which is opened with a code shown below :

const dialogPopup = new DialogInitializer(NgxPopupTooltipExample);

// Set some configuration.
dialogPopup.setConfig({
  width     : '100%',
  minWidth  : '100%',
  layoutType: DialogLayoutDisplay.NONE,
  fullScreen: true,
  escapeKeyClose: true,
  displayLoader: false,
});
dialogPopup.setButtons([
  new ButtonMaker('Cancel', 'cancel', ButtonLayoutDisplay.SECONDARY)
]);

dialogPopup.openDialog$().subscribe(resp => {
  if (resp.clickedButtonID === 'submit') {
  }
});

Here is NgxPopupTooltipExample source code :

import {Component} from '@angular/core';
import {MatTooltipModule} from '@angular/material/tooltip';

@component({
standalone: true,
selector: 'ngxpopup-tooltip-example',
template: <div style="width:100%; height:100%;" matTooltip="Tooltip test ...">foo, bar, baz ...</div>,
imports: [MatTooltipModule],
})
export class NgxPopupTooltipExample {}

Tooltip is not shown when the dialog is opened ... Is it a known issue ?