New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents the context that is passed to the load on demand visual element.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class LoadOnDemandContext : INotifyPropertyChanged

Inheritance: objectLoadOnDemandContext

Implements: INotifyPropertyChanged

Constructors

C#
public LoadOnDemandContext()

Properties

Gets the RadDataGrid instance that provides the load on demand context.

C#
public RadDataGrid Grid { get; }

Gets or sets a value indicating whether load on demand is loading data.

C#
public bool IsDataLoading { get; set; }

Methods

Notify the view that load on demand is completed.

C#
public void HideLoadOnDemandLoadingIndicator()

Raises the PropertyChanged event.

C#
protected void OnPropertyChanged(string changedPropertyName = "")
Parameters:changedPropertyNamestring

Provides an entry point for inheritors to provide additional logic over the PropertyChanged routine.

C#
protected virtual void PropertyChangedOverride(string changedPropertyName)
Parameters:changedPropertyNamestring

Notify the view that load on demand is executed.

C#
public void ShowLoadOnDemandLoadingIndicator()

Events

Occurs immediately after a property of this instance has changed.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged