I have a table like this:
<table style="width:100%">
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
And a hibernate entity:
private boolean isShow;
public boolean getIsShow() {
return isShow
}
public void setIsShow(boolean isShow) {
this.IsShow = isShow
}
This isShow variable is get from database.
My question is how can I show/hide the row of table base on isShow variable. I'm just a beginner in JSF so sorry for this dump question.