0
I need the biggest bootstrap modal size to be able to show a table with lots of data.
0
I need the biggest bootstrap modal size to be able to show a table with lots of data.
Browser other questions tagged javascript html5 twitter-bootstrap
You are not signed in. Login or sign up in order to post.
I assume it will be the size of the screen. But rethink how the data will be presented in the table, it may be useful to use a pagination.
– BrTkCa
The bootstrap has its pre-defined sizes, by default it is
medium
, still you can uselarge
(modal-lg
), if still not enough, you can change thecss
with the sizes you want... You can use theoverflow:scroll
to activate the scroll bar...– MagicHat
how do I change the css of bootstrap?
– Roberto Albino
I believe it’s in the archive
bootstrap.min.css
....– MagicHat
@Magichat instead of doing this Voce can set the class
modal-lg
again and change thewidth
. css works in statement order, so the last one wins. If you don’t use!important
– Bruno Costa
@Brunocosta is not I who am wanting to change the size, I am only offering a way, there are several paths...
– MagicHat
@Robertoalbino and can force the
css
right in the tag like this :<div class="modal-dialog modal-lg" style="height:100% !important; width:100% !important;">
– MagicHat
It worked, man, thank you very much.
– Roberto Albino