hi:
I used several jsgrids with jquery UI tabs, I wish the grid to fullfill the area of tabs;
My tabs defination like this:
`
<div id="database_grid"></div>
<div id="painfo_grid"></div>
<div id="rfswitch_grid"></div>
<div id="rf_solution_grid"></div>
<div id="spmode_grid"></div>
</div>
`
and for the jsgrid, I used:
autowidth: true,
shrinkToFit : false,
but the width and height of the grid seems not fullfill the area,

Thanks in advance.
Where did you get these options?
You need to use height and width options of the grid. They accept all usual css values. Be aware that since this is just css, no miracle will happen, when you set height 100%, not caring about heights of parents.
For anyone that comes across this. You set width and height like this.
jsGrid("option", "width","600px");
jsGrid("option", "height ","500px");
Most helpful comment
For anyone that comes across this. You set width and height like this.
jsGrid("option", "width","600px");
jsGrid("option", "height ","500px");