Hi Rafael,
Greetings from syncfusion support
We have analyzed your provided application and found that you are not defining <e-columns> tag. It was the cause of the issue. To overcome the problem, we suggest you define the <e-columns> tag and achieve your requirement. Please refer the below code example for more information.
|
<ejs-grid
[dataSource]='data'
[allowPaging]='true'
[pageSettings]='pageOptions'
[allowSorting]='true'
[sortSettings]='sortOptions'
[allowFiltering]='true'
[filterSettings]='filterOptions'
[allowGrouping]='true'
[groupSettings]='groupOptions'
>
<e-columns> //define the <e-columns> tag here
<e-column field="OrderID" headerText="Order ID" textAlign="Right" width="90"></e-column>
<e-column field="CustomerID" headerText="Customer ID" width=120></e-column>
<e-column field="Freight" headerText="Freight" textAlign='Right' format='C2' width=90></e-column>
<e-column field="OrderDate" headerText="Order Date" textAlign='Right' format='yMd' width=120></e-column>
</e-columns> //closing </e-columns> tag here
</ejs-grid>
|
Regards,
Rajapandi R