/*** 根据商品下拉框的选择,更新表格当前行的内容** @return 无*/private synchronized void updateTable() {Spinfo spinfo = (Spinfo) spComboBox.getSelectedItem();int row = table.getSelectedRow();if (row >= 0 && spinfo != null) {table.setValueAt(spinfo.getId(), row, 1);table.setValueAt(spinfo.getCd(), row, 2);table.setValueAt(spinfo.getDw(), row, 3);table.setValu
JTable根据商品下拉框的选择,更新表格当前行的内容并指定焦点
最新推荐文章于 2024-07-01 15:01:41 发布
该方法描述了如何在Java中实现当商品下拉框选择变化时,同步更新JTable当前行的相关字段,并设置表格的焦点到特定列。
摘要由CSDN通过智能技术生成