Hi all,
I have a displayTag table and wonder how to have a condition on the following code:
<display:column title="Accept?">
<html:multibox property="select" value = "<%=bean.toString() %>" />
</display:column>
Basically, I would like to have this code (checkBox) appear only if a bean property is true (otherwise don't show it)
if (bean.userApprove)
// don't show checkBox
else
//show the checkBox
thanks for any pointers