Skip to main content
All docs
V24.2

BlazorResources.QuillJS Field

Returns an identifier for the Quill client script.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public static readonly DxResource QuillJS

Field Value

Type Description
DxResource

The Quill script.

Remarks

The Quill script is required for the Blazor HTML Editor component. The Resource Manager automatically registers this script if your project includes the DevExpress.Blazor NuGet package.

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 Quill resource. It’s unnecessary if an application does not include the HTML Editor component:

@DxResourceManager.RegisterScripts((config) => {
    config.Unregister(BlazorResources.QuillJS);
})

Refer to the following topic for more information: DxResourceManager.

See Also