LoadOnDemandContext
Class
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:
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 = "")
Provides an entry point for inheritors to provide additional logic over the PropertyChanged routine.
C#
protected virtual void PropertyChangedOverride(string changedPropertyName)
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: