Detail Grid with tabs and the first tab doesn't expand on expanding the arrow to expand. It expands when revisiting first tab after visiting another tab.
I have the code
$detail.find(".pq-tabs").tabs().on("tabsactivate", function (evt, ui)
{
$contactsgrid.pqGrid("refreshView");
if (ui.newPanel.is("#contacts")) {
$contactsgrid.pqGrid("refresh");
}
if (ui.newPanel.is("#holdings")) {
$holdingsgrid.pqGrid("refresh");
}
if (ui.newPanel.is("#comments")) {
$commentsgrid.pqGrid("refresh");
}
if (ui.newPanel.is("#documents")) {
$documentsgrid.pqGrid("refresh");
}
});
but contactsGrid doesn't expand when hit the arrow to expand .