Hi All,
I have three WebUI.UltraWebTabs like Tab1,Tab2.Tab3.
I want to set focus on each tab header by tabbing and once tab focus reach one of the tab's header it should open by pressing enter button.
Please guid me for this.
Regards,
Varun
Hi Duane,
Thanks for reply.
But this will help to select a particular tab. But my concern is that focus itself not coming on tab header where we will be calling this JS function to
Show it as selected. As we need to open the igtab when we reach there by tabbing .But tab focus is not going on tab header Its directly going inside the controls which we have in each tab. We have lots of control in each tab like drop downs, text boxes.
Function()
{
var UltraWebTab = igtab_getTabById('UltraWebTab1');var tab2 = UltraWebTab.tabFromKey('Tab2');UltraWebTab.setSelectedTab(tab2);
}
Can you please guide me how to setfocus on igtab header when move through the site with tab button.
Hello Rob,
To open a tab programatically you can use one of the utility functions (igtab_getTabById) and pass in the UltraWebTab's id as a parameter. So for example the UltraWebTab can be setup in the markup like this:
<igtab:UltraWebTab ID="UltraWebTab1" runat="server"> <Tabs> <igtab:Tab Key="Tab1" Text="Tab1"> <ContentTemplate> Test 1 </ContentTemplate> </igtab:Tab> <igtab:Tab Key="Tab2" Text="Tab2"> <ContentTemplate> Test 2 </ContentTemplate> </igtab:Tab> <igtab:Tab Key="Tab3" Text="Tab3"> <ContentTemplate> Test 3 </ContentTemplate> </igtab:Tab> </Tabs></igtab:UltraWebTab>
Each tab can be created and assigned as a key.
In Javascript to set the selected tab would be to retrieve a tab object using the function tabFromKey. In the markup specified contains a key for each tab. Here's an example on opening the 2nd tab programatically:
Let me know if this works for you.
Sincerely,Duane HoytDeveloper Support Engineer, MCTSInfragisticshttp://ko.infragistics.com/support