自定义单元格编辑器无法容纳 Nimbus 外观和感觉中的文本

发布于 2024-12-12 06:49:26 字数 490 浏览 3 评论 0原文

我想验证表格单元格中的用户输入,并且我使用 Nimbus 外观和感觉。 以下是验证整数输入的单元格编辑器的代码: WholeNumberField 它扩展了 JTextField 并添加了输入验证。

当我为列设置它时,它工作正常,但它无法容纳文本:

text cut

当我使用默认值时单元格编辑器,一切看起来都很好:

正常外观

这个编辑器如何看起来像默认编辑器?

I want to validate user input in a table cell, and I use the Nimbus Look and Feel.
Here is the code of a cell editor that validates integer input: WholeNumberField
It extends JTextField and adds input validation.

When I set it for the column it works fine, but it can't accommodate the text:

text cut

When I use default cell editor, it all looks fine:

normal look

How can I this editor look like the default editor?

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

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

发布评论

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

评论(3

辞别 2024-12-19 06:49:27

WholeNumberField 是旧代码。如果您确实想进行自定义验证,那么您应该使用 DocumentFilter

但是,在这种情况下,不需要创建自定义编辑器。 JTable 已经支持编辑器来验证数字。您只需重写 JTable 或 TableModel 的 isCellEditable(...) 方法即可返回 Integer.Class,然后就会使用正确的渲染器和编辑器。

编辑:刚刚注意到我的建议是不正确的。

  1. 您需要重写 getColumnClass(...) 来返回 Integer.class,以便可以使用正确的渲染器/编辑器。
  2. isCellEditable(...) 方法用于确定是否可以编辑单元格。

The WholeNumberField is old code. If you really want to do custom validation then you should be using a DocumentFilter.

However, in this case, there is no need to create a custom editor. JTable already supports an editor to validate numbers. You just need to override the isCellEditable(...) method of the JTable or the TableModel to return Integer.Class and the proper renderer and editor will be used.

Edit: Just noticed my suggestion is incorrect.

  1. you need to override getColumnClass(...) to return Integer.class so the proper renderer/editor can be used.
  2. the isCellEditable(...) method is used to determine if you can edit a cell.
青朷 2024-12-19 06:49:27

我发现将以下内容放入自定义单元格编辑器构造函数可以解决我的问题:

Border border = UIManager.getBorder("Table.cellNoFocusBorder");
if (border != null) {
    setBorder(border);
}

我的编辑器扩展了 JTextField。

I found that putting the following to my Custom Cell Editor constructor solved the problem for me:

Border border = UIManager.getBorder("Table.cellNoFocusBorder");
if (border != null) {
    setBorder(border);
}

My Editor extends JTextField.

浅忆流年 2024-12-19 06:49:27

如果您从 getDefaultEditor(Object.class) 获取 TableCellEditor实例,它应该已经是一个可以像在您的例子。

If you get an instance of the TableCellEditor from getDefaultEditor(Object.class), it should already be a component that you can validate like in your example.

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