Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

1.I have created an JComboBox and Jtable when user select items from JComboBox they are added in the JTable.
2.I dont want to allow the user to select the items that have been previously selected by him in JComboBox.
3.So the selected choices must be disabled (not chooseable). How should i do this? 4.The below code removes that selected item from JComboBox after it has been added in JTable but i am interested in disabling it

        String getchoice=(String)selectedgames_combobox.getSelectedItem();

        DefaultTableModel gamesmodel = new DefaultTableModel(); 

        //adding selected choices from JComboBox in JTable 
        gamesmodel.addColumn("Selected Games");     
        gamesmodel.insertRow(gamesmodel.getRowCount(),new Object[]{ getchoice }) ;  

        //refreshing table
        games_table.setModel(gamesmodel);

        //removing the selected item from JComboBox
        selectedgames_combobox.removeItem(getchoice);
share|improve this question
Also see Disable items in JList – Aqua Feb 13 at 16:58

1 Answer

Here is exactly what you want.

share|improve this answer
Yes i have seen this example but how to perform this at runtime. – Akki Feb 13 at 11:37
There can be another thread to control runtime disable requests it should be seperated from your main thread. Check simple 2d animations with swing. – Ömer Faruk Almalı Feb 13 at 11:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.