Skip to main content

Localizing Your DevExpress-powered .NET App – Your Feedback Matters

We hope to validate a few hypotheses about our Localization Service, Unified Component Installer, overall localization quality, and ways to translate strings in general.

Take the survey Not interested

ClientSideModelSettings.IncludeLocalization Property

Specifies whether or not to load a localization script to a control’s client-side.

Namespace: DevExpress.XtraReports.Web.ClientControls

Assembly: DevExpress.XtraReports.v24.2.Web.dll

NuGet Package: DevExpress.Web.Reporting.Common

#Declaration

public bool IncludeLocalization { get; set; }

#Property Value

Type Description
Boolean

true, to include a localization script; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to IncludeLocalization
ClientSideModelSettingsModelBase
.ModelSettings .IncludeLocalization

#Remarks

The localization script contains a dictionary with key-value pairs that define localization for the specified strings.

If you do not need to localize UI elements of your client control, exclude the localization resources from a web page by disabling the IncludeLocalization option. This makes a web page with this control lightweight and reduces the time to load this page for the first time.

See Also