File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
projects/igniteui-angular/src/lib/grids Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -275,11 +275,11 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
275275 * Gets/Sets a custom template for adding row UI when grid is empty.
276276 * @example
277277 * ```html
278- * <igx-grid [id]="'igx-grid-1'" [data]="Data" [addRowEmptyGridTemplate ]="myTemplate" [autoGenerate]="true"></igx-grid>
278+ * <igx-grid [id]="'igx-grid-1'" [data]="Data" [addRowEmptyTemplate ]="myTemplate" [autoGenerate]="true"></igx-grid>
279279 * ```
280280 */
281281 @Input ( )
282- public addRowEmptyGridTemplate : TemplateRef < any > ;
282+ public addRowEmptyTemplate : TemplateRef < any > ;
283283
284284 /**
285285 * Gets/Sets a custom template when loading.
Original file line number Diff line number Diff line change 263263 < span class ="igx-grid__tbody-message ">
264264 < span > {{emptyGridMessage}}</ span >
265265 < span *ngIf ='showAddButton '>
266- < ng-container *ngTemplateOutlet ='addRowEmptyGridTemplate || defaultAddRowEmptyTemplate '> </ ng-container >
266+ < ng-container *ngTemplateOutlet ='addRowEmptyTemplate || defaultAddRowEmptyTemplate '> </ ng-container >
267267 </ span >
268268 </ span >
269269</ ng-template >
Original file line number Diff line number Diff line change 221221 < span class ="igx-grid__tbody-message ">
222222 < span > {{emptyGridMessage}}</ span >
223223 < span *ngIf ='showAddButton '>
224- < ng-container *ngTemplateOutlet ='addRowEmptyGridTemplate || defaultAddRowEmptyTemplate '> </ ng-container >
224+ < ng-container *ngTemplateOutlet ='addRowEmptyTemplate || defaultAddRowEmptyTemplate '> </ ng-container >
225225 </ span >
226226 </ span >
227227</ ng-template >
Original file line number Diff line number Diff line change 195195 < span class ="igx-grid__tbody-message ">
196196 < span > {{emptyGridMessage}}</ span >
197197 < span *ngIf ='showAddButton '>
198- < ng-container *ngTemplateOutlet ='addRowEmptyGridTemplate || defaultAddRowEmptyTemplate '> </ ng-container >
198+ < ng-container *ngTemplateOutlet ='addRowEmptyTemplate || defaultAddRowEmptyTemplate '> </ ng-container >
199199 </ span >
200200 </ span >
201201</ ng-template >
You can’t perform that action at this time.
0 commit comments