I searched on the Internet and was unable to find a solution to add scroll to the custom download dialog. Anyway, I can make it work. I need a vertical scroll.
Is it possible?
Bootbox uses a css class with a name modal-bodyfor the body of its dialog; so you can override the class to make it scroll. For example:
modal-body
.modal-body { height: 100px; overflow-y: scroll; }