how can I highlight a text in a grid

I want to highlight a particular text ( a keyword) among large text displayed in the grid. Gird has search function which sets focus (highlight) entire row. But how to get to highlight a particular word instead of entire row?

Thank you
–Pradeep

Grid doesn’t provides API for text highlighting ( and there is no cross-browsers standard one ), so the only way is to get the cell coordinates ( from result of findCell call ) and change cell’s value as

var cell = grid.cells(id,ind) cell.setValue(cell.getValue().toString().replace(new RegExp(search,"g"),"<b>"+search+"</b>"));