2. Since we changed the 4rd parameter called index (column field name) in version 0.4.x of cellDataBound event,
you need to find all places in your project where this parameter is in use and retrieve the column field name through column.field.
version 0.4.x code
var grid = $('selector').grid();
grid.on("cellDataBound", function (e, $wrapper, id, index, record) {
if ("something" === index) {
//do something
}
});
version 0.5.x code
var grid = $('selector').grid();
grid.on("cellDataBound", function (e, $wrapper, id, column, record) {
if ("something" === column.field) {
//do something
}
});