掲示板

How to customize classic t theme dockbar in Liferay 6?

thumbnail
13年前 に zaheer mohammed saddapalli によって更新されました。

How to customize classic t theme dockbar in Liferay 6?

Regular Member 投稿: 165 参加年月日: 08/01/15 最新の投稿
Dear All,

I am trying to customize classic theme dockbar in Liferay 6. I didn't find any information about the code where i can modify.

Here is the code which will render the dockbar
#dockbar()
. Here i don't know where it is intialized.

Thanks in advance,

Saddapalli Mohammed Zaheer
thumbnail
13年前 に Gregory Amerson によって更新されました。

RE: How to customize classic t theme dockbar in Liferay 6?

Liferay Legend 投稿: 1123 参加年月日: 10/02/16 最新の投稿
Sorry I am no help with theme development but you could post over in the Liferay English > Custom Theme development forums and likely get an answer there.

http://www.liferay.com/community/forums/-/message_boards/category/239389
thumbnail
13年前 に Shagul Khajamohideen によって更新されました。

RE: How to customize classic t theme dockbar in Liferay 6?

Liferay Master 投稿: 758 参加年月日: 07/09/27 最新の投稿
Hi Zaheer,

Probably some moderator will move this post to appropriate category.

dockbar is the Out of the Box ( OOTB ) core portlet defined in portlet.xml and liferay-portlet.xml.

#dockbar() in theme is the macro defined in VM_liferay.vm file as below.


#macro(dockbar)
	$theme.runtime("145")
#end


To customize the look and feel (css etc) you could probably do it in your theme for all the css classes specific to the dockbar.

To change the jsp behind the portlet itself you could look into hooks.

Also the below Wiki page may be of interest to you.

http://www.liferay.com/community/wiki/-/wiki/Main/Link+to+Dockbar
thumbnail
13年前 に Dinesh Balaji によって更新されました。

RE: How to customize classic t theme dockbar in Liferay 6?

Junior Member 投稿: 51 参加年月日: 10/10/06 最新の投稿
Hi Shagul,

My requirement is I need different dock bar for different themes. Since each user has different themes for them and their contents in the dockbar will also differ ,such as one will have the add option and other will not have any such options.

So how this thing can be achieved. Currently I have created a hook for the dock bar. And How to map this dockbar for a particular theme alone.

Thanks for the reply in advance emoticon
thumbnail
11年前 に Vikash Pareek によって更新されました。

RE: How to customize classic t theme dockbar in Liferay 6?

New Member 投稿: 15 参加年月日: 12/12/11 最新の投稿
Hello to all,

I am new on liferay and this is my first thread on liferay. I have implemented a simple portal by just customizing the liferay portal.
But now this stage i am facing a problem that is how can i customize the view of my portal as in attached picture.
where goto link of dockbar moved to left side of the screen and which is static for each page in the portal except control panel page.
Is it possible by following way ?
1.search code (written for 'goto' link in dockbar).
2.create a portlet which has functionality similar to 'goto'(by using searched code of 'goto').
3.embedded that code in the theme at desired position.

So please guide me whether i proceed to these steps or some another way is in your mind for this;.

添付ファイル:

thumbnail
11年前 に Vikash Pareek によって更新されました。

RE: How to customize classic t theme dockbar in Liferay 6?

New Member 投稿: 15 参加年月日: 12/12/11 最新の投稿
any idea about this ? please .....
thumbnail
11年前 に Dave Weitzel によって更新されました。

RE: How to customize classic t theme dockbar in Liferay 6?

Regular Member 投稿: 208 参加年月日: 09/11/18 最新の投稿
Hi Vikash
Your request is a bit confusing as you show a view of the portal that seems to be wrapped or something.
At first sight I thought you were actually working within the control panel.
the code for the dockbar is in the dockbar portlet
I would start by looking at the jsp files in:
webapps/ROOT/html/portlet/dockbar

the codein view.jsp will show you that for a particular user it uses:
<c:if test="<%= user.hasMySites() %>">
<li class="my-sites has-submenu" id="<portlet:namespace />mySites">
<a class="menu-button" href="javascript:;">
<span>
<liferay-ui:message key="go-to" />
</span>
</a>

<div class="aui-menu my-sites-menu aui-overlaycontext-hidden" id="<portlet:namespace />mySitesContainer">
<div class="aui-menu-content">
<liferay-ui:my-sites />
</div>
</div>
</li>
</c:if>

this shows you the sites list is genertaed bythe taglib <liferay-ui:my-sites />

so look in html/taglib/ui/my_sites

that code is what you will need

Dave
thumbnail
11年前 に Vikash Pareek によって更新されました。

RE: How to customize classic t theme dockbar in Liferay 6?

New Member 投稿: 15 参加年月日: 12/12/11 最新の投稿
Sorry for delay in reply.
Thanks Dave Sir,
it is quite helpful for me.
Actually this screen shot is my assumption and created in paint to show my assumption.
And as you thought that this screen shot looking like control panel, so you are right actually i want all the page of liferay look like control panel page which has a navigation portlet on the left.
That navigation portlet has all the links containing in Goto drop down list.
And that portlet is static such as dockbar which is visible in every page of portal except control panel.
So navigation is easy for users.