0
如何將字體顏色添加到dojo datagrid中的單元格?我需要動態改變顏色(取決於它獲得的值)。我不想使用從格式化程序方法返回的HTML標記。Dojo datgrid單元格字體顏色
例如, '數' 應該較小,如果大於0是紅色和藍色大於0
佈局,
number{
formatter : format
}
方法,
var format(value){
if(value<0){
// what should to returned to change font color without html tag?
}else if(value>0){
// what should to returned to change font color without html tag?
}
}
我不明白,你想使用html標籤嗎? – perissf
非常抱歉讓人困惑 – john