i made a dialog box but the dialog box’s has purchase item list so there more then 500 items so i want to make that dialog box scrollable
1 Like
Set the overflow
and max-width
style for the modal-body
element in the dialog.
For example: overflow: auto; max-height: 200px;
You can access it as dialog.wrapper.find('.modal-body')