I have ine simple grid and one onclick function
var mygrid = dhxLayoutFull.cells(“b”).attachGrid();
…
mygrid.init();
in function i can work with all cells, get/set values and change bgcolor like this
for(var i=0;i<mygrid.getRowsNum();i++)
{
mygrid.cells2(i,5).setValue(“Hello”);
mygrid.cells2(i,6).setValue(“Goodbye”);
mygrid.cells2(i,5).setBgColor(“lightgreen”);
}
But i cant change cell hint (like title in HTML table cells) and can’t make black borders (skin skyblue).
Tell me please how with this construction (working whith all cells whith operator “for”) i can change title and borders in different cells
Tell me please,