Skip to main content
All docs
V24.2

CommonResources Class

Lists client resource identifiers associated with multiple DevExpress packages.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.Resources.v24.2.dll

NuGet Package: DevExpress.Blazor.Resources

Declaration

public class CommonResources

Remarks

The Resource Manager automatically registers client DevExpress resources based on installed NuGet packages. The CommonResources class lists resources required by multiple DevExpress NuGet packages.

The following table lists public DevExpress resources, their positions among other scripts, and NuGet packages that include these scripts:

Position

DevExpress Resource

NuGet Packages

0

CommonResources.KnockoutJS

DevExpress.Blazor.Dashboard
DevExpress.Blazor.Reporting.JSBasedControls

150

BlazorResources.QuillJS

DevExpress.Blazor

200

CommonResources.DevExtremeJS

DevExpress.Blazor
DevExpress.Blazor.Dashboard
DevExpress.Blazor.Reporting.JSBasedControls
DevExpress.Blazor.RichEdit

300

CommonResources.JQueryJS

DevExpress.Blazor.Dashboard
DevExpress.Blazor.Reporting.JSBasedControls

400

CommonResources.AceJS

DevExpress.Blazor.Dashboard
DevExpress.Blazor.Reporting.JSBasedControls

500

CommonResources.AceLanguageToolsJS

DevExpress.Blazor.Dashboard
DevExpress.Blazor.Reporting.JSBasedControls

600

CommonResources.AnalyticsJS

DevExpress.Blazor.Dashboard
DevExpress.Blazor.Reporting.JSBasedControls

700

JSBasedReportingResources.WebDocumentViewerJS

DevExpress.Blazor.Reporting.JSBasedControls

700

CommonResources.QueryBuilderJS

DevExpress.Blazor.Dashboard
DevExpress.Blazor.Reporting.JSBasedControls

800

JSBasedReportingResources.ReportDesignerJS

DevExpress.Blazor.Reporting.JSBasedControls

800

DashboardResources.DashboardJS

DevExpress.Blazor.Dashboard

The following example unregisters the Ace resource. It’s unnecessary if your application does not use a Dashboard or Report Designer. Note that the project can still include a Report Viewer since it does not require the Ace script.

@DxResourceManager.RegisterScripts((config) => {
    config.Unregister(CommonResources.AceJS);
})

Refer to the following topic for more information: DxResourceManager.

Inheritance

Object
CommonResources
See Also