Hello
I am using a WebTab and I have a usercontrol as the content. In FireFox, the content shows up to the right of the last tab along the same horizontal plane as opposed to beneath the header or beneath the contentTabItems (ie. It isn't under a tab but to the right of the last tab). For the webTab, I have the following properties:
Height="100%"
Width="100%"
TabLocation="TopLeft"
TabOrientation="Horizontal"
EnableOverlappingTabs="false"
Please help, thanks.
Hi ContInt,
Apologies for the late response. If you are still experiencing any issues please feel free to contact me.
Best Regards,
Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://ko.infragistics.com/support
Thank you for your reply. Apologies as I have obviously misunderstood you. I am continuing my investigation on your scenario and will keep you posted with any updates.
Best Regards,Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://ko.infragistics.com/support
Hi Peter
That's what I was trying to explain in my prior post. I have tried both client and server side solutions and neither work.
If I am understanding correctly, making your second tab visible will happen server server-side. In order to select the respective tab after making it visible, you can set the SelectedIndex property of the tab:
WebTab1.SelectedIndex = 1;
Note that you can also show/select tabs client-side:
ig_controls.WebTab1.getTabAt(1).set_hidden(false); ig_controls.WebTab1.set_selectedIndex(1);
Please tell me if this helps.
Actually through using some of your style sets and playing with the styles I have achieved the look I want. I do have another question/issue though ... I have a WebTab and add 2 contentTabItems to it at design time, I define the content for 1 and set it visible at design time as well ... the other I set to invisible and define the content at runtime. I essentially click a link and the second tab is made visible, but I would also like it to have focus/be selected. I have have set it to the selecteTab and have set the focus property to true but the first tab is still selected. Thanks.