Class DataBoundEventArgs
Event argument for DataBound events—fired when the Syncfusion dropdown completes loading and binding to a new data set.
Inheritance
System.Object
DataBoundEventArgs
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class DataBoundEventArgs : Object
Remarks
Use DataBoundEventArgs to act when data collections are changed, refreshed, or rebound. This event enables data-driven UI and post-load analytics.
Examples
void OnDataBound(DataBoundEventArgs args)
{
LogCount(args.Items as IEnumerable<object>);
}
Constructors
DataBoundEventArgs()
Declaration
public DataBoundEventArgs()
Properties
E
[Obsolete] Retained for legacy data bind listeners. This is no longer supported.
Declaration
public object E { get; }
Property Value
Type |
---|
System.Object |
Items
Gets or sets the set of items loaded/bound by the last data operation.
Declaration
public object Items { get; }
Property Value
Type | Description |
---|---|
System.Object | The bound data object or list, or null for empty state. |