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.
Thank you for your response.
I have another question regarding the ultrachart.
<igchart:UltraChart ID="UltraChart" runat="server" Section508Compliant="true" Enabled="true" AcceptsFocus="True" TabIndex = "42" AccessKey="C" Version="9.2"
ClientSideEvents-ClientOnMouseClick
="some java script function"
How can I have it call a clientside event for a keypress instead of the mouseclick??
Thanks
shehla
Hello shaider1964,
In order to be fired on Server-Side this event should be configured to trigger Postback.
That is why you need to set “AutoPostBackFlags” property for it like this:
<ig:WebTab ID="WebTab1" runat="server" Height="200px" Width="300px" EnableActivation="true">
<AutoPostBackFlags SelectedIndexChanged="On" />…
Test this approach and let me know if the event is fired properly.
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.
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.