JList is a Java Swing component that displays a list of objects and allows the user to select one or more items. A separate model, ListModel, maintains the contents of the list.

learn more… | top users | synonyms

0
votes
0answers
3 views

Serializing JList

I have some problems with serializing JList. My save method works fine, but load method not. When I try to load JList nothing happened. Here's my code: declaration of jlist: listModel = new ...
0
votes
3answers
75 views

Java: Having trouble adding items to a JList from local JList

I'm having a problem here where I've created an actionListener which is intended to create a random human and add it to JList to be displayed on JScrollPane. Everything has worked out good so far ...
1
vote
2answers
41 views

Adding to existing JList

I need some help about adding items to JList. I work on some "library" kind of project. And I need to add readers to already existing JList. But when I try to add it, JList just resets, removes all ...
0
votes
2answers
30 views

Adding an item to a JList remove all other items

I need some help about adding items to JList. I work on some "library" kind of project. And I need to add readers to already existing JList. But when I try to add it, JList just resets, removes all ...
0
votes
1answer
32 views

Chat program freezes JFrame

I'm writing a simply chat client and am moving it over to a nice GUI. The constructor for the server side (client side is android) contains a list that's in the JFrame, and the first part of the ...
-1
votes
2answers
36 views

JList toArray method - display different information about a single class in seperate JList

I have two JLists and an ArrayList of Items in my Main Class and my Player class private ArrayList<Item> allItems= new ArrayList<Item>(); listItemsShop= new ...
0
votes
2answers
46 views

Swing GUI: JList with jtextFields on the rows

My problem is: I have a button that will add components to a JList when it is clicked. Each row of the list is composed by two jtextFields. The first is the ID of the row. Every time I press the "Add ...
0
votes
0answers
5 views

Java: Can you embed a JList in an HTMLDocument?

I am struggling to find a way to display a table in Java Swing. I could use JTable but I want something a little less cumbersome, so I can avoid overriding rendering methods to display a JList in one ...
0
votes
2answers
49 views

updating JList with DefaultListModel

I am using an embedded database to query the name of an entry and put it in a JList. When the program runs, the list is populated fine. I have made a function that is supposed to initialize and ...
0
votes
1answer
21 views

Format (spread) text in DefaultListCellRenderer

I have a list of expences that looks like this : My List I would like the elements of the list to appear as if formatted with \t : PRODUCT NAME PRICE DATE PRODUCT NAME PRICE DATE ...
1
vote
1answer
33 views

How to update GUI based on status

I have a JList of object "Test" that is using a custom ListCellRenderer to show the name of the test and an icon next to it. The icon represents the status of the test (Warning, Ready, Running, Done). ...
0
votes
1answer
30 views

Make control-click behave like right-click on a JList

I'm writing a swing application on Mac OS and want to have my context menus on a JList appear when I ctrl-click as well as when I right-click. The problem now is that ctrl-click always clears the ...
0
votes
2answers
27 views

Scrolling on JList without the scrollBars

I have this JList with the custom code uses ActionMapAction. now I can use the custom up and down arrow buttom But I cant use the scroll of the mouse to scroll up and down on the jLIST. How can I ...
1
vote
1answer
47 views

Is the transfer data for transferables from outside the jvm null by default when the TransferHandler canImport method gets called?

I'm working on Drag & Drop support for a JList component and I would like to be able to support files dragged in from my file browser. I however only want to allow files and not folders to be ...
2
votes
2answers
47 views

Reordering JList with Drag and Drop

I encountered a problem regarding reordering elements in a JList using Drag and Drop. This following code is a modification of a code where you could drag elements from one JList to another (worked ...
0
votes
1answer
53 views

Check JComboBox Value

I need to create a new method to check the value of the selected item in combo box. That combo box is populated from database. This is how get the selected item: combo.addActionListener(new ...
-1
votes
2answers
50 views

Add space between JList items

How can I add a space between JList items? is there a way doing it? On this Image white is the background and yellow is the customize DefaultListCellRenderer of JList and I want each of the JList ...
1
vote
1answer
28 views

JList not updating with custom ListModel

I have a TestListModel which extends AbstractListModel public class TestListModel extends AbstractListModel { List<Test> testlist = new ArrayList<Test>(); public Object getElementAt(int ...
0
votes
1answer
21 views

Changing color when double clicked in the getListCellRendererComponent

How can I change color when I double click the cell of JList? Is there a way adding a MouseListener within DefaultListCellRenderer? public class Renderer extends DefaultListCellRenderer{ @Override ...
-1
votes
1answer
51 views

double click on jlist in netbeans

I want select item in list by mouse. I found this code but it didn't work. MouseListener mouseListener = new MouseAdapter() { public void mouseClicked(MouseEvent e) { if ...
0
votes
0answers
31 views

JList is not updating correctly when action listner is a thread

I have a button ActionListener that is a Thread. Within this thread's run method I try to update a JList setListData() method and it does not update. It worked with a combobox but not a JList. I ...
0
votes
1answer
51 views

JList not updated when ListModel is updated

The JList is not updated when I update the associated model from another background thread. I have an EmployeeFrame class defined as: public class EmployeeFrame extends JFrame implements ...
0
votes
2answers
39 views

JScrollPane is not adding to my JList.

Im trying to add a Scroll bar to my JList. I want only 4 headings to be available on my JList at a time. When I add a JList and run my program, the JList disappears from the screen. Can someone help ...
-2
votes
1answer
38 views

Add a JList/JScrollPane to a JPanel [closed]

How to add a JList/JScrollPane to a JPanel? I'm having a bit of trouble figuring this out, I've created a JPanel, and what I want to do is add a list with scroll pane so that I'm able to add/remove ...
0
votes
0answers
28 views

Displaying dynamic data using swing

I need to display data returned from a web service dynamically (dont know how many lines will be returned from each request), Right now I'm using a JList to display the data but I need more ...
0
votes
1answer
32 views

Replacing JList through Combobox selection

I'm creating a word search game with a ComboBox that has the different game itemsand a JList that shows the words to be found in the word list. When the user clicks on an item in the combobox, the ...
0
votes
2answers
36 views

Filling JList with table

Does anyone have any good tutorial to fill a JList with table from sql like this query. The JList would get update every you create or delete a table. SELECT name FROM sqlite_master WHERE type = ...
0
votes
1answer
42 views

get items from database according to jlist selected values and store in array

I have a table Users in my database with columns phone no and region. In my GUI, I have a JList from where the user can select one or more regions, and accordingly I need to send out messages to the ...
-1
votes
2answers
58 views

non static variable list cannot be referenced from a static context

I want to display data from a database into JList.But its giving error that non static variable list cannot be referenced from a static context" at line "list.setModel(listModel)". What ...
0
votes
0answers
43 views

Make a thread safe JList item change

public void addUserMessaged(String user) { model.addElement(user); manager.addUser(user); } I'm basically trying to do that. I've tried synchronized, and invokeLater, but it ...
0
votes
1answer
54 views

Java - Is there a way to insert a background image in a JList?

JLists don't offer a method for this, and that's very sad. Do you know how to do it?
1
vote
2answers
49 views

JList selection to String and be able to save in a text file

I am Creating a program for my class that is a Pizza ordering Form. I have the code set so that whatever selection is chosen it is placed into a TextField called Getmetheorder. I would like put all ...
0
votes
3answers
34 views

Calling popup from selection of JList

I have created a JList and I want to generate a popup window when the user selects one of the select components in Single Mode. Can anyone tell me how I can do that? And please keep in mind that I ...
-1
votes
1answer
30 views

Updating JList when elements are added froma different Jpanel

I have a problem with an application I use netbeans GUI BUilder I havea jList that contains elements I added element to this JList, My program have two tabs, the first tab contain a jpanel that ...
0
votes
2answers
57 views

Java how to refresh sql outcome in jlist

I'm having a little problem with my Java application. I want to show the orders of a restaurant in my left Jlist, and the details of a selected order in the right Jlist. The orders get read in through ...
0
votes
2answers
55 views

How to add MouseListener to JList model

I have simple sample of code. How can I to add Mouse Listener for displaying simple menu(when i clicked on right mouse button) for selected JList item? In addition: how can I to add Mouse Listener for ...
1
vote
1answer
49 views

Exception Adding elements to a JList

I'm writing code to retrieve data from a MySQL database. I want to add one column of the query to a JList. This is my code: try { ArrayList<String> names = new ArrayList(); ...
0
votes
0answers
15 views

JList Listener cannot find symbol

Trying to add a LIstSelectionListener and keep getting error cannot find symbol ListSelectionListener() ^ symbol class ListSelectionListener jlstExtras.addListSelectionListener(new ...
0
votes
1answer
55 views

Dynamically updating Jlist

I've been reading a lot on Swing but I've hit a dead end and I know you can help me. I've read lots of questions like Updating an JList but still I'm clueless as how to proceed. My problem is the same ...
0
votes
1answer
19 views

How to get one entry in a Jlist to work with entries in another JList?

Bear with me. I have a denist program with 3 JList's. A patient JList that adds patients, a history jlist that adds the patients history and an invoice history that should link with the history jlist ...
0
votes
2answers
31 views

Resize JList in a JScrollPane based on values

I have a JList in a JScrollPane: JList list = new JList(); JScrollPane scrollPane = new JScrollPane(list, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, ...
0
votes
1answer
75 views

java jlist - AbstractListModel - fireContentsChanged does not work properly

I have a simple ListModel, that is filterable and is used in a JList... It uses the following code... public class FilteredListModel extends AbstractListModel { private List<LineData> data = ...
1
vote
3answers
27 views

Java - How to add an element to a DefaultListModel between other two?

Here is it: btnInsertL.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent arg0) { String textField1Content = textField1.getText(); ...
2
votes
1answer
47 views

jList not displaying data from custom model?

I'm trying to populate a JList through subclassing the AbstractListModel.I have looked through numerous places to try and find what I was doing wrong, but never managed to resolve the problem.So this ...
0
votes
5answers
45 views

All of my ids increment when i try to add one id

I am trying to add a patient id when a patient is created, the id's will increment by one every time. But when run my code it increments the ids of all the other ids as well. JButton btnCp = new ...
1
vote
0answers
47 views

Drag objects from JList, with ghost image effect

I have added to one of the JLists in my java program a Drag and Drop transfer handler. I added a method to this JList so as to have a nice ghost image effect of the selected values I am dragging. This ...
-3
votes
1answer
38 views

Check any item is selected in JFrame List [closed]

I have a list of items in JFrame JList. Also, I have an 'Add' button which takes the current selected item from the list. Before that I want to check whether any item is selected or not. If no item is ...
0
votes
2answers
46 views

Adding elements to a JList

I have an array of objects that contain the name of customers, like this: Customers[] How I can add those elements to an existing JList automatically after I press a button? I have tried something ...
0
votes
1answer
41 views

Is there a speed limit on JLists?

I'm baffled. With extensive testing I can confirm that if I add objects faster than y to the DefaultListModel connected to the JList, the JList dissapears. Here's what I'm doing: JPanel pane = new ...
1
vote
1answer
62 views

How does one prevent a JList from selecting elements when dragging beyond the end of its list?

A very similar question has been asked here, and while I acknowledge it, the question's solution doesn't quite solve my question. A JList, when clicked on, will select the index list item closest to ...

1 2 3 4 5 15