File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
projects/igniteui-angular/src/lib
grids/filtering/excel-style Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -51,28 +51,28 @@ export class FilterListItem {
5151}
5252
5353@Directive ( {
54- selector : '[igxExcelStyleSortingTemplate ]'
54+ selector : '[igxExcelStyleSorting ]'
5555} )
5656export class IgxExcelStyleSortingTemplateDirective {
5757 constructor ( public template : TemplateRef < any > ) { }
5858}
5959
6060@Directive ( {
61- selector : '[igxExcelStyleMovingTemplate ]'
61+ selector : '[igxExcelStyleMoving ]'
6262} )
6363export class IgxExcelStyleMovingTemplateDirective {
6464 constructor ( public template : TemplateRef < any > ) { }
6565}
6666
6767@Directive ( {
68- selector : '[igxExcelStyleHidingTemplate ]'
68+ selector : '[igxExcelStyleHiding ]'
6969} )
7070export class IgxExcelStyleHidingTemplateDirective {
7171 constructor ( public template : TemplateRef < any > ) { }
7272}
7373
7474@Directive ( {
75- selector : '[igxExcelStylePinningTemplate ]'
75+ selector : '[igxExcelStylePinning ]'
7676} )
7777export class IgxExcelStylePinningTemplateDirective {
7878 constructor ( public template : TemplateRef < any > ) { }
Original file line number Diff line number Diff line change @@ -949,10 +949,10 @@ export class IgxGridFilteringComponent extends BasicGridComponent {
949949 <igx-column width="100px" [field]="'AnotherField'" [header]="'Another Field'" [filterable]="filterable"
950950 dataType="string" [filters]="customFilter" [sortable]="'true'" [movable]="'true'">
951951 </igx-column>
952- <ng-template igxExcelStyleSortingTemplate ><div class="esf-custom-sorting">Sorting Template</div></ng-template>
953- <ng-template igxExcelStyleHidingTemplate ><div class="esf-custom-hiding">Hiding Template</div></ng-template>
954- <ng-template igxExcelStyleMovingTemplate ><div class="esf-custom-moving">Moving Template</div></ng-template>
955- <ng-template igxExcelStylePinningTemplate ><div class="esf-custom-pinning">Pinning Template</div></ng-template>
952+ <ng-template igxExcelStyleSorting ><div class="esf-custom-sorting">Sorting Template</div></ng-template>
953+ <ng-template igxExcelStyleHiding ><div class="esf-custom-hiding">Hiding Template</div></ng-template>
954+ <ng-template igxExcelStyleMoving ><div class="esf-custom-moving">Moving Template</div></ng-template>
955+ <ng-template igxExcelStylePinning ><div class="esf-custom-pinning">Pinning Template</div></ng-template>
956956 </igx-grid>`
957957} )
958958export class IgxGridFilteringESFTemplatesComponent extends BasicGridComponent {
You can’t perform that action at this time.
0 commit comments