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

I want to change font and color of a specific cell in a ListGrid.

I succeeded to change the color of the entire row with the following lines, but not of a single row:

for (ListGrid table : tables)
{
ListGridField[] columns = table.getFields(); 
for (Record record : table.getRecords())
    {
       ....
       record.setAttribute("cssText",
                           "font-weight:bold; font-size:80%; color:#FF3300;");

I don't want to use getCellCSSText function, i tried the following but it didn't work:

ListGridField gridfield = table.getField(columns[1].getName());
gridfield.setAttribute("cssText", 
                       "font-weight:bold; font-size:80%; color:#FF3300;");
table.refreshFields();
share|improve this question
1  
You should accept more answers to previous questions, to increase the change of getting a good answer to this question... – Hidde May 20 '12 at 12:54
I accepted answer that helped me. – davidbobo May 20 '12 at 17:09
If no more than 60% of the answers to your questions helped you, I think either the way you asked the questions is not right, or you just don't except the correct answers because people didn't write your code for you. – Hidde May 20 '12 at 19:33
@Hiddle I'll note what you said. Although, i don't accept my own answers! – davidbobo May 21 '12 at 7:13
Why you don't want to use the getCellCSSText function? It seems to me it is the nominal way to achieve your requirement. – gpapaz May 22 '12 at 12:58
show 1 more comment

1 Answer

I'm sure there is a better way to do it. But this is how i did it:

  1. I added a hidden column to the table, that contain the color.

  2. In getCellCSSText i read the color and the column name and set the color.

Is there a way to add an invisible parameter to a ListGridRecord? So that i won't add an entire column.

share|improve this answer

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.