<e-column field="ID" [isPrimaryKey]="true" editType="numericedit" headerText="ID" width="10" [visible]="false" textAlign="right"></e-column> |
Hai there,
I have followed the same thing to hide tree grid column by making [visible]=false and it worked. But in column chooser this hidden column appeared.
FYR, in the image provided below, id is a hidden column which is not appeared in tree grid. While triggering choose column 'id' appeared.
Query : How to hide hidden-column name in column chooser?
<ejs-treegrid
[dataSource]="data"
allowPaging="true"
….
>
<e-columns>
<e-column
field="taskID"
headerText="Task ID"
width="70"
textAlign="Right"
></e-column>
<e-column
field="taskName"
headerText="Task Name"
width="200"
[visible]="false"
[showInColumnChooser]="false"
></e-column>
|
Hi,
It perfectly worked. Thank you.
Regards,
Rama Prabha