<SfDialog @ref="SfDialogObj" ShowCloseIcon="true" Width="650px" AllowDragging="true" EnableResize="true" IsModal="true"
@bind-Visible="Visible">
........
.......
</SfDialog>
When initializing a dialog with visibility to false and later by means of SfDialogObj.Show() the dialog is visible, the EnableResize functionality is not working.
The resize handle is there, at the lower right corner of the dialog but is not working.
None of the resize events work as well
The resizing styling as below is working as it should.
<style>
/* To change the icon content */
.e-dialog .e-south-east::before, .e-dialog .e-south-west::before {
content: '\f047';
}
/* To set the icon pack */
.e-dialog .e-resize-handle {
font: normal normal normal 14px/1 FontAwesome;
}
.e-dlg-overlay {
background-color: slategray;
opacity: 0.3;
}
</style>
Please advise
Thank you in advance
Panikos Farngoudes