在“onRowClick”事件上更改EnhancedGrid行的样式

时间:2010-12-21 09:13:08

标签: dojox.grid

我想更改网格线的颜色但不选择它。这意味着我不能使用onStyleRow事件,因为它只对'selected','odd'或'over'事件作出反应。

有什么想法吗?

THX

2 个答案:

答案 0 :(得分:0)

我发现了一个updateRowStyles(idxRow)函数,但不知道如何使用它(如何传递syles等)并且不确定它是否能解决我的问题

答案 1 :(得分:0)

你不能这样改变你的风格:

var layout = [
{ field: 'denumire', name: 'Denumire', width: '200px', height: '25px', styles: "color:red;" },
{ field: 'valoare', name: 'Valoare', width: '252px', styles: "color:red;"}];

或在布局网格中使用格式化程序

var layout = [
{ field: 'denumire', name: 'Denumire', width: '200px', height: '25px',  formatter:  function (value, rowIndex) {
       return "<div style='height:110px;text-overflow:ellipsis;color:red;'>"+value+"</div>"
} },
{ field: 'valoare', name: 'Valoare', width: '252px',
formatter: function (value, rowIndex) {
       return "<div style='height:110px;text-overflow:ellipsis;color:red;'>"+value+"</div>"
}}];