1

我有下一段代码

{
xtype: 'actionColumn',
id: 'act_id',
width: 30,
flex: 0,
items: [{
     getClass: function(v, meta, record) {
       if(record.get('blahblah') == true)
         return 'aClassName';
       else
         return 'aOtherClassName';
     }
   }]
}

好的,这段代码工作正常,但我喜欢在我的图标中添加一个样式,但是当我使用类似的东西时:

{
xtype: 'actionColumn',
id: 'act_id',
width: 30,
flex: 0,
items: [{
     getClass: function(v, meta, record) {
       if(record.get('blahblah') == true)
         return 'aClassName';
       else
         return 'aOtherClassName';
     },
     style: {'width':'16px'}
   }]
}

什么都没发生。我尝试了 1000 种不同的方法,但什么都没有,在 ExtJs 4 中我找不到任何关于此的内容。

4

1 回答 1

0
{
xtype: 'actionColumn',
id: 'act_id',
width: 30,
flex: 0,
items: [{
     getClass: function(v, meta, record) {
       meta.attr = "style='width:16px;'";
       if(record.get('blahblah') == true)
         return 'aClassName';
       else
         return 'aOtherClassName';
     }
   }]
}
于 2012-10-26T19:02:17.380 回答