无法将文本字段绑定到 NetBeans 中 JTable 中的选定项目

发布于 2024-08-27 17:12:41 字数 762 浏览 7 评论 0原文

我正在尝试使用 NetBeans 将 JTextField 绑定到 JTable 的选定元素。

JTable 从返回 Cow 对象的 AbstractTableModel 子类获取数据。目前,每个 Cow 对象都通过其 toString 方法显示为 String。

我试图将 JTextField 的 text 属性绑定到 JTable 中选择的 Cow 对象的 name 属性。

我将 NetBeans 中 JTextField 的文本属性绑定到:

flowTable[${selectedElement.name}]

这将生成以下生成代码行:

org.jdesktop.beansbinding.Binding binding = 
  org.jdesktop.beansbinding.Bindings.createAutoBinding(
    org.jdesktop.beansbinding.AutoBinding.UpdateStrategy.READ_WRITE, 
    cowTable, 
    org.jdesktop.beansbinding.ELProperty.create("${selectedElement.name}"), 
    cowNameTextField, 
    org.jdesktop.beansbinding.BeanProperty.create("text"));

文本字段的绑定值始终为 null。

我做错了什么?

I am trying to use NetBeans to bind a JTextField to the selected element of a JTable.

The JTable gets its data from an AbstractTableModel subclass which returns Cow objects. At present, each Cow object is displayed as a String through its toString method.

I am trying to bind the text property of the JTextField to the name property of the Cow object which is selected in the JTable.

I bound the text property of the JTextField in NetBeans to:

flowTable[${selectedElement.name}]

This produces the following line of generated code:

org.jdesktop.beansbinding.Binding binding = 
  org.jdesktop.beansbinding.Bindings.createAutoBinding(
    org.jdesktop.beansbinding.AutoBinding.UpdateStrategy.READ_WRITE, 
    cowTable, 
    org.jdesktop.beansbinding.ELProperty.create("${selectedElement.name}"), 
    cowNameTextField, 
    org.jdesktop.beansbinding.BeanProperty.create("text"));

The bound value of the text field is always null.

What am I doing wrong?

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

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

发布评论

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

评论(3

失而复得 2024-09-03 17:12:41

您的 Cow 类是否有一个 public String getName() 方法返回名称?

如果没有,您得到的结果就是预期的。如果是这样,您可以发布更多代码(您的数据类、表模型、表...)。

Does your Cow class have a public String getName() method returning the name?

If it doesn't, the outcome you're getting would be expected. If it does, could you post more code (your data class, tablemodel, table...).

染年凉城似染瑾 2024-09-03 17:12:41

如果您只对表中的 String 感兴趣,而不是 Cow 对象本身:

table.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
    @Override
    public void valueChanged(ListSelectionEvent e) {
        if(!e.getValueIsAdjusting()) {
             Object value = table.getValueAt(e.getFirstIndex(), COLUMN_X);
             jTextField.setText(value.toString());
        }
    }
);

If you only are interested in a String in the table, and not the Cow object itself:

table.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
    @Override
    public void valueChanged(ListSelectionEvent e) {
        if(!e.getValueIsAdjusting()) {
             Object value = table.getValueAt(e.getFirstIndex(), COLUMN_X);
             jTextField.setText(value.toString());
        }
    }
);
小女人ら 2024-09-03 17:12:41

您的 Cow 类支持添加 PropertyChangeListener 吗?我不经常使用 NetBeans 的 Bean 绑定支持,但我记得您需要它。无论如何,更多的代码可以帮助找出问题所在。

Does your Cow class support adding a PropertyChangeListener? I did not use the beans binding support from NetBeans that often, but I remember you needed it. Anyway, a little more code could help with finding out whats going wrong.

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