DxJSCustomization.OnScriptsLoading Event
OBSOLETE
This API member is no longer used. Use DxResourceManager.RegisterScripts instead.
Allows you to add custom scripts after the Dashboard component scripts.
Namespace: DevExpress.DashboardBlazor
Assembly: DevExpress.Dashboard.v24.2.Blazor.dll
Declaration
[Obsolete("This API member is no longer used. Use DxResourceManager.RegisterScripts instead.")]
[Parameter]
public EventCallback<ScriptsLoadingEventArgs> OnScriptsLoading { get; set; }
Event Data
The OnScriptsLoading event's data class is ScriptsLoadingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Scripts |
Provides access to the collection of scripts that the DxDashboard component loads.
|
Remarks
Refer to the following topic for more information on how to manage client resources and/or custom scripts in DevExpress Blazor Components: DxResourceManager.
See Also