做后台管理系统时遇到的问题,关于tab关闭后再打开不显示,或者报错

我在新的tabpanel中加入了一个grid,当我关闭再次打开就会报错Cannot read property 'addCls' of null,

原因是我在定义grid的错误

这是错误代码:

  1. Ext.define('HT.view.Grid',{
  2. extend:'Ext.grid.Panel',
  3. title : '人员列表',
  4. width:400,
  5. height:170,
  6. frame:true,
  7. store: {
  8. fields: ['id','name','sex','age','birthday'],
  9. proxy: {
  10. type: 'ajax',
  11. url : 'users',
  12. reader: {
  13. type: 'json',//Ext.data.reader.Json解析器
  14. root: 'users'
  15. }
  16. },
  17. autoLoad: true
  18. },
  19. columns: [//配置表格列
  20. new Ext.grid.RowNumberer(),//表格行号组件
  21. {header: "编号", width: 80, dataIndex: 'id', sortable: true},
  22. {header: "姓名", width: 80, dataIndex: 'name', sortable: true},
  23. {header: "年龄", width: 80, dataIndex: 'age', sortable: true},
  24. {header: "性别", width: 80, dataIndex: 'sex', sortable: true},
  25. {header: "生日", width: 80, dataIndex: 'birthdate', sortable: true}
  26. ]
  27. });

应该改为这个:

  1. Ext.define('HT.view.Grid',{
  2. extend:'Ext.grid.Panel',
  3. title : '人员列表',
  4. initComponent:function(){
  5. Ext.apply(this,{
  6. width:400,
  7. height:170,
  8. frame:true,
  9. store: {
  10. fields: ['id','name','sex','age','birthday'],
  11. proxy: {
  12. type: 'ajax',
  13. url : 'users',
  14. reader: {
  15. type: 'json',//Ext.data.reader.Json解析器
  16. root: 'users'
  17. }
  18. },
  19. autoLoad: true
  20. },
  21. columns: [//配置表格列
  22. new Ext.grid.RowNumberer(),//表格行号组件
  23. {header: "编号", width: 80, dataIndex: 'id', sortable: true},
  24. {header: "姓名", width: 80, dataIndex: 'name', sortable: true},
  25. {header: "年龄", width: 80, dataIndex: 'age', sortable: true},
  26. {header: "性别", width: 80, dataIndex: 'sex', sortable: true},
  27. {header: "生日", width: 80, dataIndex: 'birthdate', sortable: true}
  28. ]
  29. }),
  30. this.callParent(arguments);
  31. }
  32. });

看样子属性的设置都要用apply方法设置进去,nnd,这个问题整了两天,终于解决了

Extjs4---Cannot read property 'addCls' of null 或者 el is null 关于tab关闭后再打开不显示或者报错的更多相关文章

  1. Extjs4---Cannot read property 'addCls' of null

    用MVC做后台管理系统时遇到的问题,关于tab关闭后再打开不显示,或者报错 我在新的tabpanel中加入了一个grid,当我关闭再次打开就会报错Cannot read property 'addCl ...

  2. mysql设置text字段为not null,并且没有默认值,插入报错:doesn't have a default value

    一.问题描述 在往数据库写入数据的时候,报错: '字段名' doesn't have a default value 本来这个错误是经常见到的,无非就是字段没有设置默认值造成的.奇怪的是,我这边报错的 ...

  3. Extjs4---Cannot read property 'addCls' of null - heirenheiren的专栏 - 博客频道 - CSDN.NET

    body { font-family: 微软雅黑,"Microsoft YaHei", Georgia,Helvetica,Arial,sans-serif,宋体, PMingLi ...

  4. js执行函数报错Cannot set property 'value' of null怎么解决?

    js执行函数报错Cannot set property 'value' of null 的解决方案: 原因:dom还没有完全加载 第一步:所以js建议放在body下面执行, 第二步:window.on ...

  5. hexo 报错 Cannot read property 'replace' of null

    详细错误信息: FATAL Cannot read property 'replace' of null TypeError: Cannot read property 'replace' of nu ...

  6. Hexo server报错TypeError: Cannot read property 'utcOffset' of null解决方法

    最近刚刚开始使用Hexo,新建了一篇article,运行hexo server时候总是报错Cannot read property 'offset' of null. 最后发现是因为手贱把_confi ...

  7. jquery easyui datagrid 空白条处理 自适应宽高 格式化函数formmater 初始化时会报错 cannot read property 'width'||'length' of null|undefined

    1---表格定义好之后右侧可能会有一个空白条 这个空白条是留给滚动条的,当表格中的一页的数据在页面中不能全显示时会自动出现滚动条,网上有很多事要改源码才可以修改这个,但是当项目中多处用到时,有的需要滚 ...

  8. 解决sweetalert 无故报错 elem.className.replace Uncaught TypeError: Cannot read property 'className' of null

    今天碰到这么一个问题,在使用sweetalert的时候时有时无会报错 elem.className.replace Uncaught TypeError: Cannot read property ' ...

  9. 报错”Cannot read property 'addEventListener' of null“

    1.报错:Cannot read property 'addEventListener' of null 2.解决方案: 把代码放到window.onload=function(){...}里面,因为 ...

随机推荐

  1. Papers | 图像/视频增强 + 深度学习

    目录 I. ARCNN 1. Motivation 2. Contribution 3. Artifacts Reduction Convolutional Neural Networks (ARCN ...

  2. lucene的suggest(搜索提示功能的实现)

    1.首先引入依赖 <!-- https://mvnrepository.com/artifact/org.apache.lucene/lucene-suggest --> <!-- ...

  3. windows 批处理语言学习

    程序员应该根植于心的一个理念是:重复的工作交给代码.windows上的批处理脚本就是这种理念的体现. 批处理bat能做的事很多,自动配置vs工程中的代码依赖环境,调用其它程序处理数据.自动编译代码等等 ...

  4. 【牛客网71E】 组一组(差分约束,拆位)

    传送门 NowCoder Solution 考虑一下看到这种区间或与区间与的关系,拆一下位. 令\(s_i\)表示前缀和,则: 那么如果现在考虑到了第\(i\)为,有如下4种可能: \(opt=1\) ...

  5. 【spring源码分析】IOC容器初始化——查漏补缺(一)

    前言:在[spring源码分析]IOC容器初始化(十一)中提到了初始化bean的三个步骤: 激活Aware方法. 后置处理器应用(before/after). 激活自定义的init方法. 这里我们就来 ...

  6. 「ZJOI2018」胖(ST表+二分)

    「ZJOI2018」胖(ST表+二分) 不开 \(O_2\) 又没卡过去是种怎么体验... 这可能是 \(ZJOI2018\) 最简单的一题了...我都能 \(A\)... 首先我们发现这个奇怪的图每 ...

  7. TextView展示富文本时emoj或图片和文字不对齐的解决方案

    在项目中,回复框.聊天界面的显示往往会有emoj或者图片,但是一个比较头疼的问题是,会出现emoj表情或者图片和文字的位置不对齐,总是有偏移,这样很影响用户体验的.下面会总结一下如何解决这个问题. 本 ...

  8. AndroidStudio环境安装与配置

    前言 大家好,给大家带来AndroidStudio环境安装与配置的概述,希望你们喜欢 AndroidStudio IDE下载 我们选择用Android Studio开发Android的App,Andr ...

  9. [CocoaPods]pod安装与pod更新

    简介 许多以CocoaPods开头的人似乎认为pod install只在第一次使用CocoaPods设置项目时使用,pod update之后才会使用.但事实并非如此. 本指南的目的是解释何时使用pod ...

  10. Spring boot MultipartResolver

    [参考文章]:Required MultipartFile parameter 'file' is not present [参考文章]:Springboot2.0中WebMvcConfigurerA ...