How to add a scroll to bootbox dialog?

Viewed 4651

I have searched the web and I have failed to find a solution to adding a scroll to a bootbox custom dialog. Is there anyway I could get it to work. I need a vertical scroll.

Is this possible?

2 Answers

If you want your dialog to expand and add scrollbars based on the size of your content, use this:

.modal-body { 
   max-height: 500px; 
   overflow-y: auto; 
}

That sets the maximum height, after which the scrollbar is added. So if you have little content, no bar and height adjusts to fix. If you have lots of content, you get a scrollbar and the height doesn't get too crazy high.

Related