The issue is that when I use arrow keys to move around different tabs, it does not read tooltip for each tab. I want screen reader to say which tab they are on. Hitting enter does display its content but I want to give audio instruction on each tab selected.
Hello shaider1964,
Overview of all our controls accessibility options can be found in the following article - http://help.infragistics.com/Help/NetAdvantage/ASPNET/2012.1/CLR4.0/html/Web_Accessibility_Overview.html
“WebTab” control covers sections (a) and (c) from the 508 compliance.
Here some of the tab client events that can be used to extend available functionality - http://samples.infragistics.com/aspnet/Samples/WebTab/Display/ClientEvents/Default.aspx?cn=tab&sid=48471fce-28e7-4a97-998c-ddf9eeb24936
I hope that this information will be helpful.
I tried adding a WebTab1_SelectedIndexChanged event but it did not work.
Here is my code:
<ig:WebTab ID="WebTab1" runat="server" EnableActivation="true" accesskey="P" TabIndex="29" ToolTip="Press ALT + P to access Property Details" SelectedIndex="0" StyleSetName="Windows7" OnSelectedIndexChanged= "WebTab1_SelectedIndexChanged"
protected void WebTab1_SelectedIndexChanged(object sender, Infragistics.Web.UI.LayoutControls.TabSelectedIndexChangedEventArgs e) { var selectedindex = this.WebTab1.SelectedIndex; var selectedtab= this.WebTab1.Tabs[selectedindex]; selectedtab.ToolTip = "Use arrow keys to select tabs around"; }
Please tell me why its not working.
Thanks