I saw
setRowBold(…) but did,'t see setColumnBold(…). This is important if we want
to make all cells in one column bold.
I tried the following to make my third column bold:
myGrid.cells(row,2).setValue(""+fullName+"");
although it worked and the column was bold, but it completely destroyed the
sorting logic and the table could no longer sort correctly.
It can be done in the next
way:
myGrid.cells(row,2).setFont(“Arial-bold-8pt”);