I have 5 tabs created (0-4), on intial page load only tab zero is visible with 2 (a & b) buttons. If the user selects button a i would like tabs 1 & 2 to become visible and tab 1 selected, if user selects button b i would like tabs 3 & 4 to be visible and tab 3 selected.
Unfortunately the tabs become visible but not selected. If i do not set visible = false they select fine.
private void SelectCon()
{
ShowConInfo = true;
Tab.EnableTab(1, true);
Tab.Select(1);
}
ShowConInfo is bool bound to tab visibility.
How do I make visible and selected?
Thansk, Martin