2012-04-05 7 views
2

私は、グリッドこのようなものがあります:私は名前アクションを隠したいextjsグリッド列名を隠すには?

Ext.define('Exp.view.dashboard.Tv', { 
    extend: 'Ext.grid.Panel', 

    initComponent: function() { 
     this.columns = [ 
      {header: 'Name', dataIndex: 'name', flex: 1}, 
      { 
       header: 'Actions', 
       xtype: 'actioncolumn', 
       items: [ 
        { 
         icon : '/images/icons/star_off.png' 
        } 
       ] 
      } 
     ]; 

     this.callParent(arguments); 
    } 
}); 

を。おそらく、それを行うために文書化されていない設定オプションがありますか?

答えて

関連する問題