ext js 传入行号后grid自动选中

ext js 传入行号后grid自动选中,第1张

在一个gridpanel中添加listeners属性,监听rowclick事件,在这里选择第二个gridpanel对应行

var grid=new Ext.grid.GridPanel({

  el:'tree',

  cm:cm,

  tbar:['->',btnCoalition2, '', ''],

  store : ds,

  listeners:{

    rowclick:function(grid,rowIndex,e){

grid2.getView().refresh()

grid2.getSelectionModel().selectRow(rowIndex)//选中

//grid2.getView().getRow(rowIndex).style.backgroundColor = '#87CEFA'设置颜色

    }

  }

})

为store添加事件,grid就是你的gridPanel

listeners:{

load:function(){

grid.getSelectionModel().selectRow(0)

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7994518.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-12
下一篇 2023-04-12

发表评论

登录后才能评论

评论列表(0条)

保存