ngx-awesome-popup
ngx-awesome-popup copied to clipboard
matTooltip does not work inside fullscreen dialog ?
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 ?