My grid is hidden "behind" a bootstrap tab, only visible when the tab is clicked.
However, each time I click the tab, the grid collapses to zero size, forcing me to expand it manually every time.
I attempted to prevent this by setting the "object" to
obj.collapsible = { collapsed : false }
, but it had no effect.
I also tried adjusting the resizable property in the following code:
var obj = { width: 700, height: 400, title: "ASO REPORTS",resizable:true ,draggable:true };
Setting resizable to false prevented me from resizing the grid at all, making the data completely inaccessible.
I considered using the min-width option, but it only applies to individual columns, not the table itself.
Is there a solution to maintain a set size for the grid, even when hidden behind the tab until it's clicked?