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

ASPxWebControl.GlobalAccessibilityCompliant Property

Gets or sets whether accessibility support is globally enabled for all DevExpress web controls across the web page or the entire web site.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public static bool GlobalAccessibilityCompliant { get; set; }

Property Value

Type Description
Boolean

true, if accessibility support is enabled; otherwise, false.

Remarks

Use the GlobalAccessibilityCompliant property to specify whether accessibility support is globally enabled for all DevExpress web controls across the web page or the entire web site. If the GlobalAccessibilityCompliant property is not specified, it returns the accessibilityCompliant Web.config option value.

Depending on your application needs, you can use the GlobalAccessibilityCompliant property at different levels within your application. The main requirement is that the property should be explicitly assigned on executing each request.

  • Page Level

    protected void Page_PreInit(object sender, EventArgs e){
            DevExpress.Web.ASPxWebControl.GlobalAccessibilityCompliant = true;
        }
    
  • Application Level - in Global.asax

    protected void Application_PreRequestHandlerExecute(object sender, EventArgs e) {
                DevExpress.Web.ASPxWebControl.GlobalAccessibilityCompliant = true;
            }
    
See Also