Class
LoadOnDemandContext

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:

cs-api-definition
public class LoadOnDemandContext : INotifyPropertyChanged

Inheritance: objectLoadOnDemandContext

Implements: INotifyPropertyChanged

Constructors

LoadOnDemandContext()

Declaration

cs-api-definition
public LoadOnDemandContext()

Properties

Grid

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

Declaration

cs-api-definition
public RadDataGrid Grid { get; }

Property Value

RadDataGrid

IsDataLoading

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

Declaration

cs-api-definition
public bool IsDataLoading { get; set; }

Property Value

bool

Methods

HideLoadOnDemandLoadingIndicator()

Notify the view that load on demand is completed.

Declaration

cs-api-definition
public void HideLoadOnDemandLoadingIndicator()

OnPropertyChanged(string)

Raises the PropertyChanged event.

Declaration

cs-api-definition
protected void OnPropertyChanged(string changedPropertyName = "")

Parameters

changedPropertyName

string

PropertyChangedOverride(string)

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

Declaration

cs-api-definition
protected virtual void PropertyChangedOverride(string changedPropertyName)

Parameters

changedPropertyName

string

ShowLoadOnDemandLoadingIndicator()

Notify the view that load on demand is executed.

Declaration

cs-api-definition
public void ShowLoadOnDemandLoadingIndicator()

Events

PropertyChanged

Occurs immediately after a property of this instance has changed.

Declaration

cs-api-definition
public event PropertyChangedEventHandler PropertyChanged

Event Value

PropertyChangedEventHandler

Implements INotifyPropertyChanged.PropertyChanged