0
votes
3answers
46 views
How can we make a list editable??
I'm using NetBeans and I want to make my list editable,what should I do ?/ also I work with NetBeans GUI builder.
0
votes
2answers
48 views
JList item : changing the vertical alignement
My application is using a JList to display numerical values.
Here is the default display :
+-----------------+
|value 1 |
|value 2 |
|value 3 |
| …
0
votes
2answers
37 views
how can i insert a image in swing JList menu?
this is my code:
URL imageUrl = status.getUser().getProfileImageURL();
ImageIcon tivitImage = new ImageIcon(imageUrl);
listModel.addElement(tivitImage.getImage()); // maybe this …
0
votes
2answers
52 views
Java Dropdown Checklist
I understand how to make a multiple-select list box using JLists but I want to add JCheckBoxes to the list and make it dropdown like. The best visual representation I have found on …
0
votes
3answers
74 views
resize problem with JList?
Hi,
i am having resizing problem with JList ...
Below is my code ...my requirement is to add a JList with some fixed size into a Panel and when i maximize/minimize the Frame the J …
2
votes
2answers
64 views
swing, show a JList over a editable jTable to select entries to autocomplete the text
Hello World !
I have a JTable with editable cells. Each Cell contains a CarretListener for quick validation of the entered text. But in one special cell you should be able to sele …
0
votes
3answers
88 views
Changing JList row color at runtime
Hi,
I am trying to change JList rows dynamically. I need change nth row colour, highlight it(n is unknown during compilation). I saw a lot of examples with custom ListCellRenderer, …
0
votes
3answers
100 views
How to show items on a jList in java?
I have made a java GUI program and have added a jList on that GUI so as to print output of the program on that jList by adding an item by calling
listBox.addElement(""); // where …
0
votes
2answers
43 views
Have something loaded only when JList item is visibile
Hello,
i'm implementing a Jlist populated with a lot of elements. Each element corresponds to a image so i'd like to show a resized preview of them inside each row of the list. I'v …
0
votes
2answers
43 views
Convert jlist selection into a string
I am trying to figure out how to get the program to create a text string based on which item in a jlist is selected. At first I tried
ListModel custTypetxt = custType.getModel(); …
0
votes
3answers
89 views
adding a JList to a table and adding the table to a scroll pane
I have created a JList and I want to add it to the table and then add the table to the scroll pane so that both of them will be contained in the scroll pane.
import model.*;
impor …
0
votes
2answers
69 views
How to change background color of the selected item in JList dynamically
How can I change the background color of the item which is selected in JList dynamically?
0
votes
3answers
106 views
Java JList scroll to selected item
Hi,
I have a jlist with a lot of items in it, of which one is selected. I would like to scroll to the selected item in this jlist, so the user can quickly see which item is select …
0
votes
2answers
57 views
broken img tag with JEditorPane / ListCellRenderer
I have this code in a ListCellRenderer which extends JEditorPane. The editor pane doesn't show the image, but instead shows a 'broken icon'. What's wrong with it?
public class Twe …
2
votes
2answers
270 views
How to generate a Jlist with alternating colors
In Java how do I get a JList with alternating colors? Any sample code?
