Class LoadOnDemandContext
Represents the context that is passed to the load on demand visual element.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class LoadOnDemandContext : Object, INotifyPropertyChanged
Constructors
LoadOnDemandContext()
Declaration
public LoadOnDemandContext()
Properties
Grid
Gets the RadDataGrid instance that provides the load on demand context.
Declaration
public RadDataGrid Grid { get; }
Property Value
RadDataGrid
|
IsDataLoading
Gets or sets a value indicating whether load on demand is loading data.
Declaration
public bool IsDataLoading { get; set; }
Property Value
System.Boolean
|
Methods
HideLoadOnDemandLoadingIndicator()
Notify the view that load on demand is completed.
Declaration
public void HideLoadOnDemandLoadingIndicator()
OnPropertyChanged(String)
Raises the PropertyChanged event.
Declaration
protected void OnPropertyChanged(string changedPropertyName = "")
Parameters
System.String
changedPropertyName
|
PropertyChangedOverride(String)
Provides an entry point for inheritors to provide additional logic over the PropertyChanged routine.
Declaration
protected virtual void PropertyChangedOverride(string changedPropertyName)
Parameters
System.String
changedPropertyName
|
ShowLoadOnDemandLoadingIndicator()
Notify the view that load on demand is executed.
Declaration
public void ShowLoadOnDemandLoadingIndicator()
Events
PropertyChanged
Occurs immediately after a property of this instance has changed.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|