I have the following columns in TreeFrid:
columns: [[
{ field: 'name', title: 'Name' },
[b]{ field: 'category', title: 'Alarm State', align: 'center', formatter: scope.formatAlarmState },
{ field: 'category', title: 'Alarm Category', align: 'center' },[/b]
......
As you can see I am using same field for two different columns. In first column I am changing cell's content using scope.formatAlarmState. In the second column I am just showing a value.
When I have first column only I see new content, but when I use both columns they both show values.
Not sure what I am doing wrong.
Thanks