How to move the dialog when PC chrome browser window width is small

Hi,

The dialog minwidth is 800, when drag the chrome browser width size to 700, I cannot drag the dialog to show the dialog completely, and the dialog has no x scroll bar to see the right part, what should I do?




4 Replies

VJ Vinitha Jeyakumar Syncfusion Team August 16, 2022 02:13 PM UTC

Hi lorryl,


Currently, we are validating your reported query. we will update you the further details on or before 18th August 2022.

Regards,
Vinitha


VJ Vinitha Jeyakumar Syncfusion Team August 19, 2022 01:28 PM UTC

Hi lorryl,


Your reported issue can be resolved by enabling horizontal scroll bar to the body element by customizing the below CSS styles code.

Code snippet:
.e-popup.e-popup-open.e-dialog {
  min-width800px;
}

.e-dlg-overlay {
  positionfixed !important;
}
.e-dlg-container {
  positionabsolute !important;
}
.e-dlg-target.e-scroll-disabled {
  overflowauto !important;
}
.e-popup.e-popup-open.e-dialog {
  max-height1200px !important;
  left200px !important;
  top100px !important;
  positionabsolute !important;
}




Regards,
Vinitha


LO lorryl August 23, 2022 10:13 AM UTC

It works, thanks.

Another question, I have a splitter, fill the width.



When I open the dialog that has min-width,  the bottom level splitter not auto fill the width when draging the scrollbar. Any idear?  I have a demo.



Attachment: demo2_8950680b.rar


VJ Vinitha Jeyakumar Syncfusion Team August 24, 2022 09:19 AM UTC

Hi Lorryl,


Your reported issue can be resolved by setting position as fixed to the splitter element. please check the sample and code below,

Code snippet:
.e-splitter.e-splitter-horizontal,
.e-splitter.e-splitter-vertical {
  position: fixed !important;
}



If this post is helpful, kindly consider accepting it as the solution so that other members can locate it more quickly.


Regards,
Vinitha

Loader.
Up arrow icon