title attribute in addRow method

Hi!

How can I set the title attribute of an image column when using addRow method?
I have something like this and i need to set a title for the fourth column:
this.addRow(nextrow, nextrow + “,00:00,…/PermisosDeTrabajo/imagenes/iconos/eliminar.png”, ultimaFila);

Thanks!

you can change title of the cell using setAttribute() method:

grid.cells(i,j).setAttribute(“title”,“new value”);

docs.dhtmlx.com/doku.php?id=dhtm … nal_data&s[]=setattribute#attributes

It worked!
thanks