Simon Ship - 2005-04-07

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