extjs4 treepanel动态改变行高度示例
程序员文章站
2022-03-07 11:20:00
复制代码 代码如下: //css代码 .x-row-class{ line-height:30px; } //js代码 },{ text: '技能分配', fl...
复制代码 代码如下:
//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;
}
},{