自定义单元格编辑器无法容纳 Nimbus 外观和感觉中的文本
我想验证表格单元格中的用户输入,并且我使用 Nimbus 外观和感觉。 以下是验证整数输入的单元格编辑器的代码: WholeNumberField 它扩展了 JTextField 并添加了输入验证。
当我为列设置它时,它工作正常,但它无法容纳文本:
当我使用默认值时单元格编辑器,一切看起来都很好:
这个编辑器如何看起来像默认编辑器?
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:
When I use default cell editor, it all looks fine:
How can I this editor look like the default editor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
WholeNumberField 是旧代码。如果您确实想进行自定义验证,那么您应该使用 DocumentFilter 。
但是,在这种情况下,不需要创建自定义编辑器。 JTable 已经支持编辑器来验证数字。您只需重写 JTable 或 TableModel 的
isCellEditable(...)
方法即可返回Integer.Class
,然后就会使用正确的渲染器和编辑器。编辑:刚刚注意到我的建议是不正确的。
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 returnInteger.Class
and the proper renderer and editor will be used.Edit: Just noticed my suggestion is incorrect.
getColumnClass(...)
to return Integer.class so the proper renderer/editor can be used.isCellEditable(...)
method is used to determine if you can edit a cell.我发现将以下内容放入自定义单元格编辑器构造函数可以解决我的问题:
我的编辑器扩展了 JTextField。
I found that putting the following to my Custom Cell Editor constructor solved the problem for me:
My Editor extends JTextField.
如果您从
getDefaultEditor(Object.class)
获取TableCellEditor
的实例,它应该已经是一个可以像在您的例子。If you get an instance of the
TableCellEditor
fromgetDefaultEditor(Object.class)
, it should already be a component that you can validate like in your example.