掲示板

Save portlet preferences by preferences--parameter--

11年前 に sawi _ によって更新されました。

Save portlet preferences by preferences--parameter--

Regular Member 投稿: 165 参加年月日: 09/03/27 最新の投稿
Hi
It's working in 6.x Liferay?

<aui:input name="preferences--parameter--" value="" type="text"/>

Because not working for me if I extended asset publishser.

Regards
sawi
thumbnail
11年前 に Amit Doshi によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Liferay Master 投稿: 550 参加年月日: 10/12/29 最新の投稿
sawi _:
Hi
It's working in 6.x Liferay?

<aui:input name="preferences--parameter--" value="" type="text"/>

Because not working for me if I extended asset publishser.

Regards
sawi


What you are exactly looking for?

If you are looking to store value in portlet prefrence then below is the code.


final PortletPreferences prefs = portletRequest.getPreferences();
prefs.setValue("paramName", "paramValue");
prefs.store();


Thanks & Regards,
Amit Doshi
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
Alloy UI is just an user interface library so it won't save any data.

Follow Amit's instructions and create a Java class which is invoked from your FORM if you want to save your data.
thumbnail
11年前 に Jitendra Rajput によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Liferay Master 投稿: 875 参加年月日: 11/01/07 最新の投稿
Its is working with Liferay 6.1

Define your AUI element with below syntax
<aui:input name="preferences--showFeedTitle--" type="checkbox" value="<%= showFeedTitle %>" />


It should follow pattern like preferences--paramName-- .

And make sure you use below Configuration class in your liferay-portlet.xml
<configuration-action-class>com.liferay.portal.kernel.portlet.DefaultConfigurationAction</configuration-action-class>


By using this way we dont need to write any code to store form element value into preferences . DefaultConfigurationAction class will detect form element with specified syntax and store the same in preference for you.

In case if you want to retrieve value from preference then directly use
preferences.getValue("showFeedTitle")
// No need to use that syntax to get value
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
Interesting. Have to test it out.

The normal way to save configuration is outlined in the page below.
http://www.liferaysolution.com/2012/05/add-configuration-page-in-plugin.html
thumbnail
11年前 に Jitendra Rajput によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Liferay Master 投稿: 875 参加年月日: 11/01/07 最新の投稿
Yes its interesting and it will reduce code to store form elements values in preferences. emoticon

Listed same thing on my blog as well.
http://itsliferay.blogspot.in/2012/07/advantage-of-using-liferay-61.html
thumbnail
11年前 に Amit Doshi によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Liferay Master 投稿: 550 参加年月日: 10/12/29 最新の投稿
Jitendra Rajput:
Yes its interesting and it will reduce code to store form elements values in preferences. emoticon


I would definitely like to give a try for it. It's something new today I learned from you.

Thanks for sharing this information.
10年前 に Gaurav kalia によって更新されました。

RE: Save portlet preferences by preferences--parameter--

New Member 投稿: 14 参加年月日: 12/08/13 最新の投稿
Hi Jitendra

Any idea how can I use the same mechanism for dropdown if I am selecting multiple values ?

Thanks
Gaurav
thumbnail
8年前 に Riccardo Rotondo によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Junior Member 投稿: 29 参加年月日: 10/06/11 最新の投稿
Hi, what if the preferences I'm dealing with have multiple values? Any fast way to update the value with preferences--parameters-- ??

I'll explain better with an example. Suppose I have in my portlet.xml

<preference>
           <name>MultipleValues</name>
           <value>Number 2</value>
           <value>Number 3</value>
 </preference>


And in my config.jsp

&lt;%
PortletPreferences preferences = renderRequest.getPreferences();
String portletResource = ParamUtil.getString(request, "portletResource");
PortletPreferences prefs =
           PortletPreferencesFactoryUtil.getPortletSetup(request, portletResource);
String [] mul = prefs.getValues("MultipleValues", 
                                    new String []{"", ""});
%&gt;

<aui:form action="<%= configurationURL %>" method="post" name="fm">
    <aui:input name="<%= Constants.CMD %>" type="hidden" value="<%= Constants.UPDATE %>" />

    <aui:input name="preferences--MultipleValues--" type="text" value="<%= mul[0] %>" />
    <aui:input name="preferences--MultipleValues--" type="text" value="<%= mul[1] %>" />

    
    <aui:button-row>
       <aui:button type="submit" />
    </aui:button-row>
</aui:form>


After the submit the preference "MultipleValues" will be updated only with one value and it changes from a String[2] to a simple String.

Any way to specify a in the aui to refers to the index like preferences-MultipleValues-[0] ??

Thank you in advance for the help.

Cheers
thumbnail
8年前 に Chandan Sharma によって更新されました。

RE: Save portlet preferences by preferences--parameter--

Junior Member 投稿: 63 参加年月日: 12/05/28 最新の投稿
sawi _:
Hi
It's working in 6.x Liferay?

<aui:input name="preferences--parameter--" value="" type="text"/>

Because not working for me if I extended asset publishser.

Regards
sawi


I tried with Liferay 6.2 it is not working for me. but it is working in Liferay 6.1.

Thanks
Chandan