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

Alright, I found a solution to this. Assuming that you're using the <div> tag
method to get a fixed table header (talked about quite a bit on these boards),
the easiest way to do it is to modify your displaytag.properties file for the
project in question. You'll be looking for a line in it that looks something
like:

export.banner=<div class="exportlinks">Export options: {0}</div>

To get the Export links outside of the scrollable area, you basically just need
to close the overall <div> tag that you added to make the scrollable table 
BEFORE
instantiating the 'exportlinks' div tag above. So, instead of closing the </div>
tag in the jsp after the <display:table> portions of the jsp, you do it in the
export.banner definition in your properties file:

export.banner=</div><div class="exportlinks">Export options: {0}</div>

Using the 'exportlinks' style class, you can then customize the appearance to
your heart's content.

I hope this helps anyone else who ran into a similar situation.

______________________________________________________________________
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=249318

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to