Interface SupportsExpansionChangeNotifications
Implementors support being notified of expansion changes.
Assembly: IgniteUI.Blazor.dll
Syntax
public interface SupportsExpansionChangeNotifications
Methods
NotifyRowExpansionChanged(Int32, Boolean, Boolean)
Declaration
void NotifyRowExpansionChanged(int index, bool oldState, bool newState)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Boolean |
oldState |
|
| System.Boolean |
newState |
|
NotifyRowExpansionChangedAsync(Int32, Boolean, Boolean)
Declaration
Task NotifyRowExpansionChangedAsync(int index, bool oldState, bool newState)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Boolean |
oldState |
|
| System.Boolean |
newState |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|