Hi Jay Bauer,
Thanks for contacting Syncfusion support.
You can update the columns inside the “dataBound” event
when every time the grid dataSource is changed. You can set the “columns”
property and call the “refreshColumns” method. Please refer to the below
code example for more information.
|
dataBound() {
// here you can add your conditions
if (this.isdataChanged) {
this.grid.columns = [{ field: 'Verified' }];
this.isdataChanged = false;
this.grid.refreshColumns();
}
}
|
If the above doesn’t meet your requirement, please share a simple
sample that will be helpful for us to provide a better solution as early as possible.
Please get back to us if you need further assistance on this.
Regards,
Pavithra S