“textfield”类型的 GridPanel 单元格编辑;

发布于 2024-11-29 15:02:13 字数 153 浏览 1 评论 0原文

我正在使用带有“CellEditing”插件的 GridPanel。 我的编辑器单元格的类型为“文本字段”。

我有两个问题: 我想更改空单元格的背景颜色,以便更容易看到哪里缺少值。 双击单元格时,我想格式化文本字段的文本。如何获取文本字段对象?

谢谢你, 达纳

I'm using a GridPanel with the 'CellEditing' plugin.
My editor cell is of type 'textfield'.

I have 2 questions:
I would like to change the background color of empty cells so that it would be easier to see where there are missing values.
When double clicking a cell, I would like to format the text of the textfield. How do I get to the textfield object?

Thank you,
Dana

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

轻许诺言 2024-12-06 15:02:13

您可以为文本字段指定 id 属性。

field: {
id: 'myId',
...
}

访问关于颜色字段

var objTextfield = Ext.getCmp('myId');

,您必须添加或覆盖 CSS。您可以将配置属性“cls”设置为自定义 css 类。请参阅此处: http: //docs.sencha.com/ext-js/4-0/#/api/Ext.form.field.Text-cfg-cls

You might give the textfield an id property.

field: {
id: 'myId',
...
}

Access the field with

var objTextfield = Ext.getCmp('myId');

About the color, you must add or overwrite the CSS. You can set a config property 'cls' to a custom css class. See here: http://docs.sencha.com/ext-js/4-0/#/api/Ext.form.field.Text-cfg-cls

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