2011-09-05 110 views
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? 
    } 
} 
+0

我不明白,你想使用html標籤嗎? – perissf

+0

非常抱歉讓人困惑 – john

回答

0

你可以試試與

dojo.style(node, style, value); 

如果你知道節點。之後,你可能需要渲染網格。 這應該與在格式化程序中使用html標記具有相同的效果。這可能看起來很美觀但很有效。