Extjs 4 检查列不可见

发布于 2024-12-05 16:26:01 字数 311 浏览 0 评论 0原文

我有一个网格,其中有一列必须是检查列,我使用此代码 网格中有两行,但检查列看起来是空的。当我单击检查列时,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

煮茶煮酒煮时光 2024-12-12 16:26:01

您必须手动包含 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">

初相遇 2024-12-12 16:26:01

如果您的应用程序是由 Sencha CMD 生成的,则需要

sencha app build

在该命令完成后在项目目录中执行以下命令,在浏览器上重新加载您的应用程序,您现在可以看到您的 checkcolumn< /代码>。

if your app is generated by Sencha CMD, you need to execute the following command on your project directory

sencha app build

after this command has finished, reload your app on your browser and you can now see your checkcolumn.

累赘 2024-12-12 16:26:01

需要额外的 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.

泅人 2024-12-12 16:26:01

我通过运行 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文