尧图网站设计 尧图网站设计YAOTU DESIGN
ARTICLE DETAIL

资讯详情

深耕网站设计与一线实操的经验洞察。

分录表格设置颜色

分录表格设置颜色 单元格设置颜色AbstractGrid grid this.getView().getControl(AIMSENTRYENTITY);//获取分录控件ArrayListCellStyle csList new ArrayListCellStyle();CellStyle cs new CellStyle();cs.setBackColor(#ff0000);//设置颜色cs.setFieldKey(key);//设置字段keycs.setRow(rowIndex);//设置行号csList.add(cs);grid.setCellStyle(csList);//设置单元格样式整行设置颜色AbstractGrid grid this.getView().getControl(entryentity);//获取分录表体grid.setCellStyle(csList);//设置单元格样式int[] rowsnew int[2];rows[0]1;rows[1]2;grid.setRowBackcolor(#FFFFE0,rows);
返回列表