Skip to main content

BootstrapConfigurationSection.AllowClientObjectDeferredInitialization Property

Enables the browser to load and execute included and startup scripts asynchronously when loading a page.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[ConfigurationProperty("allowClientObjectDeferredInitialization", DefaultValue = true)]
public bool AllowClientObjectDeferredInitialization { get; set; }

Property Value

Type
Boolean

Remarks

A browser should execute external scripts when it encounters them while rendering a page. This can block page rendering and increase the page’s loading time. The AllowClientObjectDeferredInitialization option reorganizes scripts so that they are loaded asynchronously. This allows the browser to render the page without delay.

See Also