Title property in cells of Cgrid

Hi,

I need to use the title property with href links used on cgrid cells. But the component always ignore this value and use the array value of the cell.
Is there any way to use different titles on same cell?

title property works well for me:
value of a cell

but is it possible to have more than one title per cell?

For example i have a link and a image on the same cell. I want to have a title for the link and other title for the image

You may try to use the onMouseOver event to change the title dynamically:

myGrid.attachEvent("onMouseOver", function(id,ind){ this.cellById(id,ind).cell.title = "some new title"; return false; });