我正在尝试在java中做一些简单的应用程序。我在jTable中渲染了一些CheckBox和ComboBox。现在我正在尝试在该项目上工作,如获取值,启用 - 禁用组合框。但我面临一些问题
我现在面对的是什么
1.
我在jTable中渲染ComboBox和CheckBox。当我点击相应行的复选框时,我正在尝试启用ComboBox。如果我的checkBox未启用,则应禁用ComboBox
我尝试过但没有成功。
2
我试图点击复选框,但如果我使用setSelected,则检查所有复选框但是当我试图取消选中它时,它没有。
这是我的代码供您参考。
public class MyComboBoxRenderer extends JComboBox implements TableCellRenderer {
public MyComboBoxRenderer(String[] items) {
super(items);
}
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
if (isSelected) {
setForeground(Color.BLACK);
super.setBackground(Color.WHITE);
} else {
setForeground(Color.BLACK);
setBackground(Color.WHITE);
}
// Select the current value
setSelectedItem(value);
return this;
}
}
public class MyComboBoxEditor extends DefaultCellEditor {
public MyComboBoxEditor(String[] items) {
super(new JComboBox(items));
}
}
public class MyCheckBoxRenderer extends JCheckBox implements TableCellRenderer {
public MyCheckBoxRenderer(String[] items) {
super();
// setSelected(true);
}
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
if (isSelected) {
setForeground(Color.BLACK);
super.setBackground(Color.WHITE);
} else {
setForeground(Color.BLACK);
setBackground(Color.WHITE);
}
// setSelected(true);
// Select the current value
return this;
}
}
public class MyCheckBoxEditor extends DefaultCellEditor {
public MyCheckBoxEditor() {
super(new JCheckBox());
}
}
给我一些提示或参考 在此先感谢。
答案 0 :(得分:1)
see my question about prepareEditor (and/or with prepareRenderer)
我建议使用prepareRenderer
(easiest and more confortable, my view)和check Boolean value came from Column contains (rendered as ) JCheckBox
必须覆盖convertXxxToModel
,因为ColumnModel
could be reordered and/or rows can be sorted or filtered,在这种情况下,渲染器无法正常工作