How to change color of a row

Reply

Join Date: Jan 2008
Posts: 2
Reputation: chankya is an unknown quantity at this point 
Solved Threads: 0
chankya chankya is offline Offline
Newbie Poster

How to change color of a row

 
0
  #1
Feb 27th, 2008
I want to change the color of the whole row("which is containing different data types in different cells") depending upon the value of one column. Have any idea?????
Please help!!!!!!!!!!!!!!!!!!!!!!!1
Reply With Quote Quick reply to this message  
Join Date: Jan 2007
Posts: 706
Reputation: stultuske is a jewel in the rough stultuske is a jewel in the rough stultuske is a jewel in the rough 
Solved Threads: 84
stultuske's Avatar
stultuske stultuske is offline Offline
Master Poster

Re: How to change color of a row

 
0
  #2
Feb 27th, 2008
a row and a column of what? a table on a jsp page? in a jTable?
what do you want and what have you tried so far? it's no use for us to try sollutions that have allready proven to you not to work.
Reply With Quote Quick reply to this message  
Join Date: Mar 2004
Posts: 763
Reputation: Phaelax is on a distinguished road 
Solved Threads: 38
Phaelax Phaelax is offline Offline
Master Poster

Re: How to change color of a row

 
1
  #3
Feb 27th, 2008
Create your own custom TableCellRenderer, then set the background color of whatever the component is that you're returning for rendering.
  1. Component c = whatever your component is
  2. (rowIndex %2 == 0) ? c.setBackground(Color.blue) : c.setBackground(Color.white);

If you do this, you'll also have to control the highlighting of when the row is selected, which is easily handles in the same renderer class. The funny statement above is just an IF ELSE statement simplified. It basically says: IF row is an even number, color it blue, ELSE color white.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC