掲示板

hide a list item from the dockbar

thumbnail
12年前 に En Rico によって更新されました。

hide a list item from the dockbar

Junior Member 投稿: 39 参加年月日: 11/12/06 最新の投稿
Hello all,

i have a question.
I am developing a liferay theme and i want to hide the first list item that is shown in the dock bar which is the option to add a new page.

As shown in the screenshot (question.jpg), i put the red circle to the first list item that i want to hide. So, my goal is:
if i click "Add", only the list as seen in goal.jpg is shown.

Anyone can help me??
thumbnail
12年前 に Pankaj Kathiriya によって更新されました。

RE: hide a list item from the dockbar

Liferay Master 投稿: 722 参加年月日: 10/08/05 最新の投稿
Hi En Rico,
There are two ways to achieve this.

1.Dockbar comes as portlet so you can create hook and remove snippet from view.jsp of dockbar portlet.

2.By adding CSS in theme, you can hide that section.
.aui-menu-content .add-page {
display: none;
}

HTH.
Thanks,
Pankaj
thumbnail
12年前 に En Rico によって更新されました。

RE: hide a list item from the dockbar

Junior Member 投稿: 39 参加年月日: 11/12/06 最新の投稿
Hello,

i tried the second option and it worked..
That's so cool.

Thank you very much emoticon