Can we change the column headerText at runtime?
Thanks
Thanks. I just build the columns at the runtime.
Hello,
I am just following up to see if you need any further assistance with this matter.
If you have any other questions, do not hesitate to ask.
Thanks for using ours controls.
We tested your code. It seems that the columns from myColumns will be added the the columns generated from the data source if AutoGenerateColumns:true.
Yes.
Just create an array of JSON object for columns:
var myColumns = [
{ headerText: "Column1", key: key},
{ headerText: "Column2", key: key}
];
and initailize the grid with myColumns array:
$("#grid").igGrid({ autoGenerateColumns: true, columns: myColumns });