how to make SplitAt in grid work with tabbar?

Hi,
My application uses a tabbar with 4 tabs.Each tab has a grid attached to it.
One of the grids uses SplitAt(1) (I have used splitat before data load and after structure intializing) , but only the 1st column is visible and that grid is not displayed properly.
other tabs are working fine.
Why is this happening…any fixes pls??

Regards
Shraddha

Hi,

Such a problem may occur if the width of the 1st column is bigger than the tabbar width. Make sure that the widths of the columns are correct. If the problem is not solved, please provide intialization code of grid and tabbar.

I am also facing the same issue.This is the initialization code for grid and tabbar.It didnt work by reducing size of column as per ur previous post.

var mygrid1;
var mygrid2;
var mygrid3;
var mygrid4;

function doInitGrid1(){
tabbar = new dhtmlXTabBar(“a_tabbar”, “top”);
tabbar.setSkin(‘light’);
tabbar.setImagePath(“http://wwwin.cisco.com/WWSales/dhtmlx25/dhtmlxGrid/codebase/imgs/”);
tabbar.enableAutoReSize();
tabbar.addTab(“a1”, “By Partner”, “100px”);
tabbar.addTab(“a2”, “RM”, “100px”);
tabbar.addTab(“a3”, “Linearity”, “200px”);
tabbar.addTab(“a4”, “Order Details”, “100px”);
tabbar.addTab(“a5”, “Chart”, “100px”);
tabbar.setHrefMode(“iframes-on-demand”);
mygrid4 = tabbar.cells(“a3”).attachGrid();



mygrid4.splitAt(1);
mygrid4.groupBy(1);
mygrid4.loadXML(“linearload.xml”);
}

Thanks in advance,
Pravallika

What are the widths of the grid columns ? What is the tabbar size ?