这里有一个场景:
我有两个JComboBoxes(称它们为combo1和combo2(,从数据库中获取它们的值[在数据库中,这两个有1:M关系]。当屏幕出现时,我用数据库中的值填充combo1,然后获取列表中的第一个条目并获取其相应的值来填充combo2。
由于combo2的值取决于在combo1中选择的内容,因此每当combo1的选择发生变化时,都会调用数据库以获得匹配的值来填充combo2。
现在有一个问题:
假设我在combo1中有两个条目,而第二个条目没有对应的combo2值。当我选择combo1的第二个条目时,combo2上最后一个选定的值不会清除。[记住combo2的模型是空的,因此不应该选择任何东西]
问题:如果模型为空,如何清除组合2中的文本
这是一个示例代码:
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);
}
}
}
如果您有一个空的组合框模型,视图应该会自动清除。如果您派生了自己的模型,请不要忘记在删除条目时调用DefaultComboBoxModel.fireIntervalRemoved()
。
另一种(在这种情况下不推荐(方法是使用combobox.setSelectedItem(null);
。
在第一个组合框中进行选择时,替换第二个组合框的模型:
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 );
}
}
只需执行以下操作:
jcombobox.setSelectedIndex(-1);
之后:
jcombobox.getSelectedIndex();