Please follow these steps:
Define the columns in colModel.
{title: "Gold", dataIndx: "gold", width: 100, dataType:'integer',
tpCls: 'gold',denyGroup: true, denyPivot: true
},
{title: "Gold", dataIndx: "gold1", width: 100, dataType:'integer',
tpCls: 'gold',denyGroup: true, denyPivot: true, editable: false
},
{title: "Gold", dataIndx: "gold2", width: 100, dataType:'integer',
tpCls: 'gold',denyGroup: true, denyPivot: true, editable: false
},
Link new columns with the original column with help of formulas:
formulas: [
['gold1', function(rd) {
return rd.gold;
}],
['gold2', function(rd) {
return rd.gold;
}]
],