Fórumok

Save portlet preferences by preferences--parameter--

sawi _, módosítva 11 év-val korábban

Save portlet preferences by preferences--parameter--

Regular Member Bejegyzések: 165 Csatlakozás dátuma: 2009.03.27. Legújabb bejegyzések
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
Amit Doshi, módosítva 11 év-val korábban

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

Liferay Master Bejegyzések: 550 Csatlakozás dátuma: 2010.12.29. Legújabb bejegyzések
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
Hitoshi Ozawa, módosítva 11 év-val korábban

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

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
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
Jitendra Rajput, módosítva 11 év-val korábban

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

Liferay Master Bejegyzések: 875 Csatlakozás dátuma: 2011.01.07. Legújabb bejegyzések
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
Hitoshi Ozawa, módosítva 11 év-val korábban

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

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
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
Jitendra Rajput, módosítva 11 év-val korábban

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

Liferay Master Bejegyzések: 875 Csatlakozás dátuma: 2011.01.07. Legújabb bejegyzések
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
Amit Doshi, módosítva 11 év-val korábban

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

Liferay Master Bejegyzések: 550 Csatlakozás dátuma: 2010.12.29. Legújabb bejegyzések
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.
Gaurav kalia, módosítva 10 év-val korábban

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

New Member Bejegyzések: 14 Csatlakozás dátuma: 2012.08.13. Legújabb bejegyzések
Hi Jitendra

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

Thanks
Gaurav
thumbnail
Riccardo Rotondo, módosítva 8 év-val korábban

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

Junior Member Bejegyzések: 29 Csatlakozás dátuma: 2010.06.11. Legújabb bejegyzések
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
Chandan Sharma, módosítva 8 év-val korábban

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

Junior Member Bejegyzések: 63 Csatlakozás dátuma: 2012.05.28. Legújabb bejegyzések
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