Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,12 @@ export class IgxGridElementsComponent extends IgxGridComponent {
@Output()
public columnsAutogenerated = new EventEmitter<IColumnsAutoGeneratedEventArgs>();

/**
* Emitted when content children are resolved and collections in grid are updated.
*/
@Output()
public childrenResolved = new EventEmitter<void>();

/* contentChildren */
/* blazorTreatAsCollection */
/* blazorCollectionName: ActionStripCollection */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ export class IgxHierarchicalGridElementsComponent extends IgxHierarchicalGridCom
@Output()
public columnsAutogenerated = new EventEmitter<IColumnsAutoGeneratedEventArgs>();

/**
* Emitted when content children are resolved and collections in grid are updated.
*/
@Output()
public childrenResolved = new EventEmitter<void>();

/* contentChildren */
/* blazorTreatAsCollection */
/* blazorCollectionName: ActionStripCollection */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ export class IgxTreeGridElementsComponent extends IgxTreeGridComponent {
@Output()
public columnsAutogenerated = new EventEmitter<IColumnsAutoGeneratedEventArgs>();

/**
* Emitted when content children are resolved and collections in grid are updated.
*/
@Output()
public childrenResolved = new EventEmitter<void>();

/* contentChildren */
/* blazorTreatAsCollection */
/* blazorCollectionName: ActionStripCollection */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1008,14 +1008,6 @@ export abstract class IgxGridBaseDirective implements GridType,
@Output()
public selectedRowsChange = new EventEmitter<any[]>();

/* blazorInclude */
/** @hidden @internal */
/**
* Emitted when content children are resolved and collections in grid are updated.
*/
@Output()
public childrenResolved = new EventEmitter<void>();

/**
* Emitted when the expanded state of a row gets changed.
*
Expand Down