var store = grid.getStore();  //获取Store对象
var record = store.getAt(index);   //获取索引的数据对象
var value = record.get("字段");    //获取字段的名字

$.each(grid.getStore().data,function(index){
    alert(grid.getStore().getAt(index).get("no")); })//获取所有“no”列的值

 

 

相关文章:

  • 2022-12-23
  • 2021-10-31
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-02
  • 2021-12-04
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
相关资源
相似解决方案