简体   繁体   中英

Liferay Web content Display Portlet : Look and Feel - Portlet Configuration

After adding web content display portlet , click on Look and Feel - Portlet Configuration - Show Borders.

If i uncheck Show Borders, it display three links as per below screenshot 在此处输入图片说明

Can anyone tell this three links code contains in which file?

I want to remove close link only from all the portlet

Those portlet options come from below files:

portal-web\\docroot\\html\\themes\\_unstyled\\templates\\portlet.vm portlet.vm uses $theme.portletIconOptions() to include different options (configuration, close, Maximize, Minimize etc)

util-taglib\\src\\com\\liferay\\taglib\\util\\VelocityTaglibImpl.java

Implementation of portletIconOptions method is in this class which uses IconOptionsTag - custom tag.

util-taglib\\src\\com\\liferay\\taglib\\portletext\\IconOptionsTag.java

And this in-turn uses different custom tags for each of the options.

portal-web\\docroot\\html\\taglib\\portlet\\icon_options\\page.jsp

<liferay-portlet:icon-portlet-css />

<liferay-portlet:icon-configuration />

<liferay-portlet:icon-edit />

<liferay-portlet:icon-edit-defaults />

<liferay-portlet:icon-edit-guest />

<liferay-portlet:icon-export-import />

<liferay-portlet:icon-help />

<liferay-portlet:icon-print />

<liferay-portlet:icon-maximize />

<liferay-portlet:icon-minimize />

<liferay-portlet:icon-close />

`

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM