Base solution for your next web application
Open Closed

Vertical scroll bar will disappear when modal lookup closed on entity create or edit modal dialog #7840


User avatar
0
andyfuw created

Issue: Vertical scroll bar will disappear when modal lookup closed on entity create or edit modal dialog

Expected: Vertical scroll bar on the right shall always show up if the modal dialog is larger than the browser screen

Issue repro steps: 1. first open entity create modal dialog, the scroll bar on the right will show up, because the modal dialog size is larger than browser screen

2. Then open the modal lookup dialog on the entity create modal

<br> 3. When modal lookup dialog close, the scroll bar on right will disappear even the modal dialog size is larger than browser screen, this is not expected


2 Answer(s)
  • User Avatar
    0
    edarib created

    Add this style to yor view:

    .modal {
        overflow: auto !important;
    }
    
  • User Avatar
    0
    andyfuw created

    Thanks,

    Resolved by adding the style to ModalHeader view, since I don't want to make this change to every entity view.