Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4672046
By: ed_j_webb

I copied the TableDecorator class in the Java Resources: src directory of my
web project and placed it under the same package name as that which is in the
displaytag 1.1.1.jar file.

Why did you do that? You need to subclass the abstract class TableDecorator.
You need to create a new class:

package my.package;

import org.displaytag.decorator.TableDecorator;

public class MyDecorator extends TableDecorator {

... put your finishRow() method here ...

}


and then in the <display:table> tag:

<display:table ... decorator="my.package.MyDecorator">

Which should sort you out.

Ed!

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249317

-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to