Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
Editable cells keyboard accessibility
posted

Hi

I am using WebDataGrid / WebHierarchicalDataGrid within Infragistics45.Web.v19.2 assembly.

I am unable to access the editable cells inside the grid through the keyboard. 

When the page loads, and I keep pressing tab, the focus never gets set on the editable cells. However, if I click on any cell inside the grid, and then tab, the editable cells receive focus and can be edited. 

I have enabled activation, and set EnableOnActive for EditModeActions to true, as in the code below:

<igtbl2:EditingCore BatchUpdating="true">
<Behaviors>
<igtbl2:CellEditing EditModeActions-MouseClick="Single" EditModeActions-EnableF2="true" EditModeActions-EnableOnActive="true" EditModeActions-EnableOnKeyPress="true" Enabled="true" CellEditingClientEvents-EnteringEditMode="WgSyndication_CellEdit">
</igtbl2:CellEditing>
</Behaviors>
</igtbl2:EditingCore>
<igtbl2:Activation Enabled="true">
</igtbl2:Activation>