About cells readonly

Hi,how to set readonly on a column of price type?

There is no separate readonly flag for column , but you can use the next code

grid.attachEvent(“onEditCell”,function(stage,id,ind){
    if (ind==INDEX) return false;
    return true;
})

where INDEX - index of column which need to be readonly