Foren

Docbar in Liferay 6

thumbnail
Jignesh Vachhani, geändert vor 12 Jahren.

Docbar in Liferay 6

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
can anyone have idea where #docbar() has been implemented in LR 6 ?

As i want to customize some of the things in docbar i want to docbar menu.
Nisarg Parikh, geändert vor 12 Jahren.

RE: Docbar in Liferay 6

Expert Beiträge: 262 Beitrittsdatum: 31.12.09 Neueste Beiträge
Hi Jignesh,

Actually it is a portlet in LR 6.
You can change under below path:

"/html/portlet/dockbar/view.jsp"

Hope this will help you.

-Nisarg
thumbnail
Jignesh Vachhani, geändert vor 12 Jahren.

RE: Docbar in Liferay 6

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
Ohhh i see !!!!

Thanks Nisarg for pointing out this but i think that some of the javascrip also has been used to generate this docbar.
So i will dig it more and put update over here.
thumbnail
Arvind Mishra, geändert vor 12 Jahren.

RE: Docbar in Liferay 6

Regular Member Beiträge: 226 Beitrittsdatum: 13.02.08 Neueste Beiträge
portal-web/docroot/html/js/liferay/dockbar.js is the alloy UI script used.

If you see view.jsp of the dockbar portlet, this line of code initiates the script


<aui:script position="inline" use="liferay-dockbar">
	Liferay.Dockbar.init();
</aui:script>


Beside that
dockbar.add.portlets
property conrols which portlets will be visible in Add Application drop down.

HTH
Arvind
thumbnail
Jignesh Vachhani, geändert vor 12 Jahren.

RE: Docbar in Liferay 6

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
Thanks Arvind its really useful information !!!