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 | DevExpress.Blazor.Dashboard | |
150 |
| DevExpress.Blazor |
200 | DevExpress.Blazor | |
300 | DevExpress.Blazor.Dashboard | |
400 | DevExpress.Blazor.Dashboard | |
500 | DevExpress.Blazor.Dashboard | |
600 | DevExpress.Blazor.Dashboard | |
700 | DevExpress.Blazor.Reporting.JSBasedControls | |
700 | DevExpress.Blazor.Dashboard | |
800 | DevExpress.Blazor.Reporting.JSBasedControls | |
800 | 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.