how to create jcombobox with jcheck box and multiple selection
问题 I want to create JComboBox with checkboxes and multiple selection . i have created a list with check box after rendering the jlist . I dont know how to render it with jcombobox . Or is it possible to make jlist as drop down list like combo box . for jlist rendering i am using the following code DefaultListModel listModel = new DefaultListModel(); ListCheckBox li= new ListCheckBox(listModel); JScrollPane jsp= new JScrollPane(li); add(jsp); listModel.add(0,new JCheckBox("Other Court"));