I want to use tab grids inside sub grid.
But when i expand a sub grid and then expand and another one subgrid if the second subgrid is after the first subgrid it doesn’t shows the tabs and instead of tabs shows to grids the one after the other.
1 Answers
Hello,
I understand it’s quite late and just to log answer to help others, the reason could be due to the duplicate tab ids.
If your tab ids are same for first row1-subgrid and row2-subgrid then definitely second will not display correctly.
To solve this, Append the rowid with all the tab ids used in subgrid and it will be unique then.
e.g. fetch rowid from master grid and use it with all tab ids.
$rid = $_REQUEST["rowid"]; ... <div id="tabs-<?php echo $rid?>">
Your Answer