以下是一个场景:
我有两个JComboBox (称之为combo1和combo2)从数据库中获取它们的值 [在DB中,这两个具有1:M的关系]。当屏幕显示时,我使用数据库中的值填充combo1,然后获取列表中的第一个条目并获取其相应的值以填充combo2。
由于combo2的值取决于在combo1中选择的内容,因此每次选择在combo1中更改时,都会调用数据库以获取匹配值以填充combo2。
现在出现问题:
假设我在combo1中有两个条目,第二个条目没有combo2的相应值。当我选择combo1的第二个条目时,combo2上的最后一个选定值不会清除。 [请记住,combo2的模型为空,因此不应选择任何内容]
Qeustion:如果模型为空,如何清除combo2中的文本?
以下是示例代码:
public void select(final Entry entry) {
if (entry == null)
return;
int index = entryList.indexOf(entry); // instance of SelectionInList from JGoodies
boolean positive = index >= 0 && index <= entryList.getSize() - 1;
if (positive) {
entryList.setSelection(entry);
subEntryList.setList(entryList.loadSubEntries(entry.getID()));
if (!subEntryList.isEmpty()) {
SubEntry e = subEntryList.getElementAt(0);
select(e);
}
}
}
答案 0 :(得分:1)
如果您有一个空的组合框模型,视图应自动清除。如果您派生了自己的模型,请不要忘记在删除条目时调用DefaultComboBoxModel.fireIntervalRemoved()
。
另一种方法(在这种情况下不推荐)是使用combobox.setSelectedItem(null);
。
答案 1 :(得分:0)
在第一个组合框中进行选择时,替换第二个组合框中的模型:
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
public class ComboBoxTwo extends JFrame implements ActionListener
{
private JComboBox mainComboBox;
private JComboBox subComboBox;
private Hashtable subItems = new Hashtable();
public ComboBoxTwo()
{
String[] items = { "Select Item", "Color", "Shape", "Fruit" };
mainComboBox = new JComboBox( items );
mainComboBox.addActionListener( this );
// prevent action events from being fired when the up/down arrow keys are used
// mainComboBox.putClientProperty("JComboBox.isTableCellEditor", Boolean.TRUE);
getContentPane().add( mainComboBox, BorderLayout.WEST );
// Create sub combo box with multiple models
subComboBox = new JComboBox();
subComboBox.setPrototypeDisplayValue("XXXXXXXXXX"); // JDK1.4
getContentPane().add( subComboBox, BorderLayout.EAST );
String[] subItems1 = { "Select Color", "Red", "Blue", "Green" };
subItems.put(items[1], subItems1);
String[] subItems2 = { "Select Shape", "Circle", "Square", "Triangle" };
subItems.put(items[2], subItems2);
String[] subItems3 = { "Select Fruit", "Apple", "Orange", "Banana" };
subItems.put(items[3], subItems3);
// mainComboBox.setSelectedIndex(1);
}
public void actionPerformed(ActionEvent e)
{
String item = (String)mainComboBox.getSelectedItem();
Object o = subItems.get( item );
if (o == null)
{
subComboBox.setModel( new DefaultComboBoxModel() );
}
else
{
subComboBox.setModel( new DefaultComboBoxModel( (String[])o ) );
}
}
public static void main(String[] args)
{
JFrame frame = new ComboBoxTwo();
frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
frame.pack();
frame.setLocationRelativeTo( null );
frame.setVisible( true );
}
}
答案 2 :(得分:-1)
这样做:
jcombobox.setSelectedIndex(-1);
后:
jcombobox.getSelectedIndex();