I want to make a colspan
in a display:column so I tried to do it as follows:
<display:column style="width=50% colspan=2 " title="${textResources['Exam.endDate']}">
but it doesn't work it seems that this property is not allowed in a display:column so how to do that?
To add a colspan to the display column you have to create a Table Decorator extends the TableDecorator class, override the method init, in this method you need to get the header for your cell and add the colspan attribute.
And in the jsp I use it so.
I hope this will help you