在 Liferay portlet 中创建选项卡的简单方法?

发布于 2024-12-02 12:41:00 字数 129 浏览 1 评论 0原文

你好,

有谁知道在 Liferay portlet 中创建选项卡的简单方法吗?一直在阅读它,我似乎找不到任何关于如何轻松做到这一点的建议。

如果有这方面经验的人能给我一些指示,那就太好了。

谢谢!

Ello there,

Does anyone know of an easy way to create tabs in a Liferay portlet? Been reading up on it and I just can't seem to find any suggestions on how to do this quite easily.

Would be great if someone that has experience with this could give me some pointers.

Thanks!

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

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

发布评论

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

评论(1

自在安然 2024-12-09 12:41:01

使用 Liferay UI TagLib!

首先导入TagLib,

<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>

现在您可以使用它,

<liferay-ui:tabs
    names="questions,tags,users,badges,unanswered"
    param="tab"
    url="<%= myURL.toString() %>"
/>
  • name属性与您的选项卡名称以逗号分隔。
  • url 属性将是一个 URL,其中 param 属性将作为参数附加到其中。

或者,您可以显式设置每个选项卡的 URL。

<liferay-ui:tabs
    names="questions,tags,users,badges,unanswered"
    url1="<%= questionsURL.toString() %>"
    url2="<%= tagsURL.toString() %>"
    url3="<%= usersURL.toString() %>"
    url4="<%= badgesURL.toString() %>"
    url5="<%= unansweredURL.toString() %>"
/>

Use the Liferay UI TagLib!

First import the TagLib,

<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>

Now you can use this,

<liferay-ui:tabs
    names="questions,tags,users,badges,unanswered"
    param="tab"
    url="<%= myURL.toString() %>"
/>
  • The name attribute is comma separated with the names of your Tab.
  • The url attribute will be a URL where the param attribute will be appended to as a param.

Alternatively, you can explicitly set the URL for each tab.

<liferay-ui:tabs
    names="questions,tags,users,badges,unanswered"
    url1="<%= questionsURL.toString() %>"
    url2="<%= tagsURL.toString() %>"
    url3="<%= usersURL.toString() %>"
    url4="<%= badgesURL.toString() %>"
    url5="<%= unansweredURL.toString() %>"
/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文