嘿,我花了几个小时才弄清楚这个问题。目前,我必须单击该单元格,然后再次单击以打开下拉列表(这是一个日期选择器)。
我的目标是-一旦检测到正确列中的单元格内的点击,便使用代码。
我尝试过的代码是:
comboBox.setPopupVisible(true);
和
table.editCellAt(0, 4);
和
comboBox.showPopup();
目前,我确实将该单元格设为可编辑状态。尽管当我运行程序并单击其中一个单元格时,这是给我的错误:
我正在这样定义我的组合框:
public static JComboBox comboBox = new JComboBox();
我是从另一个班级来的。
class1:
if (selCol == 4) { try { TblWithDropdown.dropBox(); } catch (InterruptedException e) { e.printStackTrace(); } }
现在我的另一个班级:
TblWithDropdown类:
@SuppressWarnings("rawtypes") public static JComboBox comboBox = new JComboBox(); public class TblWithDropdown { public static void dropBox() throws InterruptedException { comboBox.showPopup(); //table.editCellAt(0, 4); comboBox.setPopupVisible(true); } }
它给我的错误是:
线程“ AWT-EventQueue-0”中的异常java.awt.IllegalComponentStateException:必须在屏幕上显示组件才能确定其位置 在java.awt.Component.getLocationOnScreen_NoTreeLock(未知来源)
从视觉上看,这是我的带有combox的表格的样子:
[ [
为解决此问题提供帮助!
更新1
更新2
_al = alldata.fillInData("SELECT fname FROM users");
String[] testers = new String[_al.size()];
TblWithDropdown.comboBox = new JComboBox(_al.toArray(testers));
TblWithDropdown.table.getColumnModel().getColumn(3)
.setCellEditor(new DefaultCellEditor(TblWithDropdown.comboBox));
JXDatePicker res = new JXDatePicker();
res.setFormats(DateFormat.getDateInstance(DateFormat.MEDIUM));
res.setDate(new Date());
res.getMonthView().setDayForeground(Calendar.SUNDAY, Color.RED);
DatePickerCellEditor testser = new DatePickerCellEditor(new SimpleDateFormat("dd/MM/yyyy HH:mm:ssZ"));
testser.setClickCountToStart(0);
testser.setFormats(new SimpleDateFormat("dd/MM/yyyy HH:mm:ssZ"));
TableColumn dateColumn = TblWithDropdown.table.getColumnModel().getColumn(4);
dateColumn.setCellEditor(testser);
答案 0 :(得分:0)
您可以尝试将其作为编辑器showPopup
组件的focusGained
侦听器,而不是直接调用JComboBox
:
public static JComboBox comboBox = new JComboBox();
// initialize editor component
comboBox.addFocusListener(new FocusAdapter() {
public void focusGained(FocusEvent e) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
comboBox.showPopup();
}
});
}
});