Am having an issue with ejs-grid in angular especially with header column which is not visible.Hav tested sorting the sorting allows are visible but not column names.
<ejs-grid [dataSource]='empList' [allowPaging]="true" [allowSorting]="true" [toolbar]='toolbar'
[pageSettings]="pageSettings" >
<e-columns>
<e-column field='EmpNumber' headerText='Number' textAlign='Left' width=90></e-column>
<e-column field='FullName' headerText='Full Name' width=120></e-column>
<e-column field='DOB' headerText='Date of Birth' textAlign='Right' width=90></e-column>
<e-column field='Department' headerText='Department' textAlign='Right' width=120></e-column>
</e-columns>
</ejs-grid>
-- class
export class employee {
EmpNumber: string
FullName: string
DOB: any
Department: string}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…