extjs4 treepanel动态改变行高度例子

来源:互联网 发布:浏览器收集用户数据 编辑:程序博客网 时间:2024/05/01 09:22


//css代码

.x-row-class{ 
line-height:30px;
}  

//js代码

    },{
            text: '技能分配',
            flex: 1,
            width:150,
            dataIndex: 'skillDistribut',
            sortable: true,
       renderer:function(value, metaData, record, rowIndex, columnIndex, store){
           metaData.tdAttr= "data-qtip='" + value + "'";
           if (record.data.outboundAmount==1) {
           metaData.tdCls='x-grid-record-red';
           }
           return value;
    }
        },{



0 0
原创粉丝点击