Skip to main content
All docs
V25.1
  • IListEditorBase<TData, TValue>.CustomData Property

    Specifies an asynchronous function that loads editor data based on the specified load options.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(null)]
    Func<DataSourceLoadOptionsBase, CancellationToken, Task<LoadResult>> CustomData { get; set; }

    Property Value

    Type Default Description
    Func<DevExtreme.AspNet.Data.DataSourceLoadOptionsBase, CancellationToken, Task<DevExtreme.AspNet.Data.ResponseModel.LoadResult>> null

    A delegate that implements data load logic.

    Remarks

    Refer to the CustomData property description for more information and an example.

    See Also