Extjs 4 检查列不可见
我有一个网格,其中有一列必须是检查列,我使用此代码 网格中有两行,但检查列看起来是空的。当我单击检查列时,console.log 正确返回更改后的布尔值。但我在那一栏中什么也没看到。
xtype: 'checkcolumn',
header: 'REDACTEUR',
dataIndex: 'REDACTEUR',
width: 75,
editor: {
xtype: 'checkbox'
},
renderer : function(value) {
console.log(value);
I have a an Grid with a column that must be a checkcolumn, i use this code
there are two rows in the grid but the checkcolumn looks empty. When i click on the checkcolumn the console.log returns correctly the changed boolean. But i see nothing in that column.
xtype: 'checkcolumn',
header: 'REDACTEUR',
dataIndex: 'REDACTEUR',
width: 75,
editor: {
xtype: 'checkbox'
},
renderer : function(value) {
console.log(value);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须手动包含 checkcolumn xtype 的 css,如下所示:
you have to manually include the css for the checkcolumn xtype like this:
<link rel="stylesheet" type="text/css" href="/extjs4/examples/ux/css/CheckHeader.css">
如果您的应用程序是由
Sencha CMD
生成的,则需要在该命令完成后在项目目录中执行以下命令,在浏览器上重新加载您的应用程序,您现在可以看到您的
checkcolumn< /代码>。
if your app is generated by
Sencha CMD
, you need to execute the following command on your project directoryafter this command has finished, reload your app on your browser and you can now see your
checkcolumn
.需要额外的 js 文件,尝试寻找名为“
CheckColumn.js
”的 Ext 文件并将其包含在您的脚本中。或者在脚本开头设置Ext的ux路径也可以。extra js file is needed, try to seek Ext file named '
CheckColumn.js
' and included it in your script. Or set the Ext's ux path at the beginning of the script also works.我通过运行 2 个命令解决了 ExtJs 6.01 中消失的复选框/单选 CSS 问题:
1) sencha 应用程序构建开发
2) sencha 应用程序刷新
刷新很重要
I solved my disappearing checkbox/radio CSS problem in ExtJs 6.01 by running 2 commands:
1) sencha app build development
2) sencha app refresh
Refresh was important