Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to make bold a row in a JList component to show the active row. It should be done dynamically to let user see the change in the active row immediately. How can I do this?

share|improve this question

2 Answers

up vote 5 down vote accepted

Take a look on CustomCellRenderer in your renderer you could change the color of the presented label based on isSelected argument.

share|improve this answer
2  
+1 example here stackoverflow.com/a/8344497/714968 – mKorbel Dec 5 '11 at 15:40
@mKorbel nice link:) +1 – mprabhat Dec 5 '11 at 15:42
I created a CustomCellRenderer and also created a mothod in it to set the index of bold row (so renderer can understand which one should Be bolded) then i assigned it to my JList. but when i call my method (((boldCellrenderer)jList1.getCellRenderer()).SetBoldedIndex(boldIndex);) it doesn't update view until i do something like clicking on another row. i tried to call updateUI() in my setter method and it worked, is this the correct way or i should do something else? – 4r1y4n Dec 5 '11 at 19:37
here is an simple example of using it. github.com/alekstheod/Promasi-V2/blob/master/… Component getListCellRendererComponent will be called each time when you need to redraw a current cell. So in case if isSelected is true you have to change a color of your label and return it, otherwise change a color to white. – AlexTheo Dec 5 '11 at 19:56
1  
HHHmm I did it with an new class (Entry) which contain an boolean variable that show us if it is selected and and an object which store your real entry. So instead of your object you will pass the Entry instance which contains your object and this boolean variable. After you will be able to check if the entry was selected by checking the boolean var in your CustomCellRenderer. – AlexTheo Dec 5 '11 at 20:24
show 1 more comment

Just in case you want to change the Color of the selected item you can use:

list.setSelectionForeground(Color.RED);

there is another similar API for setting background of selected item:

list.setSelectionBackground(Color.BLUE);
share|improve this answer
an alternative +1, same possible by define UIManager – mKorbel Dec 5 '11 at 15:45

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.