css – 样式Dojox网格行取决于数据

前端之家收集整理的这篇文章主要介绍了css – 样式Dojox网格行取决于数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图根据网格中的值在DojoX(1.2.3)网格中设置一个Row的样式.

网格布局:

var view1 = {
                noscroll: true,rows: [{
                    field: 'TASK_ID',name: 'ID',width: '80px',get: this.getColor
                },{
                    field: 'MENUPOINT',name: 'Action',width: '250px'
                }]
            };

getColor函数

getColor: function(inRowIndex) {
        console.log(inRowIndex);
        grid = dijit.byId('gridTaskCurrent');
            // if task_id = 1 style row with other background(?)
        },

我不知道如何从每一行获取task_id值并为其设置样式
排…如果有人有一个很好的链接或知道该怎么做..这将是伟大的.

解决方法

得到了我自己:
dojo.connect(dijit.byId('gridTaskCurrent'),'onStyleRow',this,function(row) {
                   var item = grid.getItem(row.index);

                    if (item) {
                        var type = grid.store.getValue(item,"LOCKED",null);
                        if (type == 1) {
                            row.customStyles += "background-color:limegreen;";
                        }
                    }

                    grid.focus.styleRow(row);
                    grid.edit.styleRow(row);


                });
原文链接:https://www.f2er.com/css/242191.html

猜你在找的CSS相关文章