I want to add a row style.
Si I download the TableDecorator.java file version 1.12 and I build my new Jar file.
I make a decorator class who override addRowClass() like this :
public String addRowClass()
{
EncaissementDTO current = (EncaissementDTO) getCurrentRowObject();
return "red";
}
When I see the code on my jsp, I have :
<tr class="odd"> .....
Is someone knows why I don't have my style
<tr class="odd red">
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I want to add a row style.
Si I download the TableDecorator.java file version 1.12 and I build my new Jar file.
I make a decorator class who override addRowClass() like this :
public String addRowClass()
{
EncaissementDTO current = (EncaissementDTO) getCurrentRowObject();
return "red";
}
When I see the code on my jsp, I have :
<tr class="odd"> .....
Is someone knows why I don't have my style
<tr class="odd red">
Well, I forgot to update the file Row.java wich is concerned by the patch from DISPL-192.
Sorry, it was entirely my fault.