在中显示超链接基于 google sitebricks 中的条件

发布于 2024-12-04 17:57:09 字数 387 浏览 0 评论 0原文

我正在使用 Google Sitebricks 来开发用户界面。

我有一个使用 @repeat 注释显示的表格

@Repeat(items=regusers, var="reguser")

<tr>
<td><a href="/something/${reguser.userId}">${reguser.userId}</a></td>
<td>${reguser.userRegAt}</td>      
</tr>

我有一个“状态”变量。基于这个值我想在第一列中切换锚标记的显示,

可以吗给我指出一个解决方案。

谢谢 。 。

I am using Google Sitebricks for developing a user interface.

I have a table which i am displaying using @repeat annotation

@Repeat(items=regusers, var="reguser")

<tr>
<td><a href="/something/${reguser.userId}">${reguser.userId}</a></td>
<td>${reguser.userRegAt}</td>      
</tr>

I have a 'status' variable .based on this value i wanna toggle display of anchor tag in first column

can you please point me to a solution .

Thanks . .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桜花祭 2024-12-11 17:57:09

请尝试以下操作

<tr>

@ShowIf(status)
<td><a href="/something/${reguser.userId}">${reguser.userId}</a></td>

<td>${reguser.userRegAt}</td>
</tr> 

Please try the following

<tr>

@ShowIf(status)
<td><a href="/something/${reguser.userId}">${reguser.userId}</a></td>

<td>${reguser.userRegAt}</td>
</tr> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文