我想更改ListGrid 中特定单元格的字体和颜色。
我成功地用以下几行改变了整行的颜色,但不是单行:
for (ListGrid table : tables)
{
ListGridField[] columns = table.getFields();
for (Record record : table.getRecords())
{
....
record.setAttribute("cssText",
"font-weight:bold; font-size:80%; color:#FF3300;");
我不想使用 getCellCSSText 函数,我尝试了以下但没有奏效:
ListGridField gridfield = table.getField(columns[1].getName());
gridfield.setAttribute("cssText",
"font-weight:bold; font-size:80%; color:#FF3300;");
table.refreshFields();