|
App.component.html
<ejs-grid [dataSource]='data' allowPaging='true' height=365 [pageSettings]='initialPage'>
<e-columns>
. . . . . . .
<e-column field='CustomerName' headerText='Customer Name' width='150'>
<ng-template #headerTemplate let-data>
<div>
<a rel='nofollow' href="https://ej2.syncfusion.com/angular/documentation/grid/columns/#header-template">Customer Name</a> //hyper link
</div>
</ng-template>
</e-column>
. . . . . . . .
</e-columns>
</ejs-grid>
|
I want to apply icon after filter menu option. how to do it ?
Rakhis,
You can add your custom icon in the place of filter menu by using the Custom CSS, based on your query we have prepared a sample and we suggest you use the below way to achieve your requirement. Please refer the below code example and sample for more information.
|
Index.html
<style> .e-grid .e-sortfilterdiv:not(.e-icon-ascending):not(.e-icon-descending)::before { content: "\e300"; /* Actual icon here: content: "\ea7f";*/ font-size: .9em; /* styling */ } </style>
|