A small example of removing the full selection box from the gridPanel header_javascript skills
- WBOYOriginal
- 2016-05-16 17:28:251019browse
Just add a listener to the gridpanel
,listeners:{
render:function(){
var hd_checker = this.getEl().select('div.x-grid3-hd-checker');
if (hd_checker.hasClass('x-grid3-hd -checker')) {
hd_checker.removeClass('x-grid3-hd-checker');
}
}
}
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn