我正在使用Google Sitebricks开发用户界面。
我有一个表格,我使用@repeat注释显示
@Repeat(items = regusers,var =“reguser”)
<tr>
<td><a href="/something/${reguser.userId}">${reguser.userId}</a></td>
<td>${reguser.userRegAt}</td>
</tr>
我有一个'status'变量。基于此值,我想在第一列中切换锚标记的显示
你能指点我一个解决方案吗?谢谢。 。
答案 0 :(得分:1)
请尝试以下
<tr>
@ShowIf(status)
<td><a href="/something/${reguser.userId}">${reguser.userId}</a></td>
<td>${reguser.userRegAt}</td>
</tr>