Multiline Tooltip in the DhtmlxGrid

Hello ,
is there a way to have a multiline tooltip in the Dhtmlxgrid ?
i tryed this code , but i can’t get a multiline tooltip with it :

grid.attachEvent(“onMouseOver”,grid_onMouseOver);
function grid_onMouseOver(id,ind) {
this.cells(id,ind).cell.title = 'The index of this column is '+ind;
return false;
}

thank you for your help.

hello ,
i found a solution for the problem , i did it by using the ‘\n’ caracter :slight_smile:
grid.attachEvent(“onMouseOver”,function(id,ind){

		var str ="";
	        str='AAA \n BBB';
		this.cells(id,ind).cell.title = str;
		return false;

});