I am working with phpgrid inside a page that uses bootstrap. But when applied to phpgrid the font is too big, I prefer the old style.
Is possible to remove bootstrap only for the grid, but still working for the page that contains it?
1 Answers
To use grid in bootstrap theme, you must include compatibility css.
Following should be included after main bootstrap css
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/jqgrid/css/ui.jqgrid.bs2.css">
OR
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/jqgrid/css/ui.jqgrid.bs3.css">
Refer demos/appearance/twitter-bootstrap.php & demos/appearance/twitter-bootstrap3.php
Your Answer