extjs需要查看的网站

https://www.cnblogs.com/niejunchan/p/4998501.html

https://www.cnblogs.com/niejunchan/p/4998501.html

https://bbs.csdn.net/topics/390452658

 https://blog.csdn.net/woshisap/article/details/7057539

var record=grid.getStore.getAt(value); 

 alert(record.get("name"));

这个人写的博客里面有extjs写的合并单元格

https://www.cnblogs.com/shiworkyue/p/4134590.html

  1. //我们得到实例boy,使用三种方法得到name属性
  2.  
    alert(boy.data.name);
  3.  
    alert(boy.data['name']);
  4.  
    alert(boy.get('name'));
  5.  
    //如果需要需改boy中的数据,不要直接操作data,应该用set()函数
原文地址:https://www.cnblogs.com/sanshengshitouhua/p/14486736.html