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

Hi,

For simplicity let's asssume that I need to show three columns: First Name,
Last Name, Address. In some cases the user can make the information private.
In those cases I need to display "The user has made the information private".

It's possible to have something like this:

<tr>
<td> Joe</td><td>somebody</td><td>100 Main st</td>
</tr>
<td>
<td colspan="3">The user has made the information privaate</td>
</tr>


I could accomplish the second case using the code :
public String finishRow() { 
         MyBean myBean = (MyBean)this.getCurrentRowObject(); 
         return "<tr><td colspan="3"> The user has made the information
private.</td></tr>";
 }

But how should I handle the first case?

-=- Simon

______________________________________________________________________
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 email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
displaytag-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to