Skip to main content
A newer version of this page is available. .
Tab

ASPxGridView.KeyboardSupport Property

Specifies whether keyboard navigation is available in the ASPxGridView control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(false)]
public bool KeyboardSupport { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if keyboard navigation is enabled; otherwise, false.

Remarks

Set the AccessibilityCompliant property to true to add the “Presentation” role attribute to the grid table and prevent the grid table from focusing. In this case, the ASPxGridView.KeyboardSupport property is not in effect as it applies focus to the grid table.

<dx:ASPxGridView runat="server" ID="grid" KeyboardSupport="true">
    //...
</dx:ASPxGridView>

Concept

Keyboard Navigation

Online Demo

See Also