有个需求 找了半天 终于找到了。

     原来一直纠结在是不是要找column 的API

     直接找到grid 后就行了。

      

<script>
    initComponent: function(){
        this.callParent(arguments);
        this.on('specialkey', function(f, e){
            if(e.getKey() == e.ENTER){
                this.onTrigger2Click();
            }
        }, this);
        var _List = this.scope;
        _List.headerCt.on("headerclick", function(ct,column,e,t,opts) {
            console.dir(column);
        });
    },
</script>

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-24
  • 2021-09-04
  • 2022-02-20
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案