I want to show 2 grids side by side on a single tab page of a tab bar. What is the best method of doing this please?
Thanks
I want to show 2 grids side by side on a single tab page of a tab bar. What is the best method of doing this please?
Thanks
There are several methods:
tabbar.setContent(tabId,containerId);
var layout = tabbar.cells(tabId).attachLayout(“2U”);
var grid1 = layout.cells(“a”).attachGrid();
var grid2 = layout.cells(“b”).attachGrid();
You may choose any of these methods. If you need manipulate grid data, possibly the 1st and the 2nd approaches would be better.