Foros de discusión

Save portlet preferences by preferences--parameter--

sawi _, modificado hace 11 años.

Save portlet preferences by preferences--parameter--

Regular Member Mensajes: 165 Fecha de incorporación: 27/03/09 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Master Mensajes: 550 Fecha de incorporación: 29/12/10 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Master Mensajes: 875 Fecha de incorporación: 7/01/11 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Master Mensajes: 875 Fecha de incorporación: 7/01/11 Mensajes recientes
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, modificado hace 11 años.

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

Liferay Master Mensajes: 550 Fecha de incorporación: 29/12/10 Mensajes recientes
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, modificado hace 10 años.

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

New Member Mensajes: 14 Fecha de incorporación: 13/08/12 Mensajes recientes
Hi Jitendra

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

Thanks
Gaurav
thumbnail
Riccardo Rotondo, modificado hace 8 años.

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

Junior Member Mensajes: 29 Fecha de incorporación: 11/06/10 Mensajes recientes
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, modificado hace 8 años.

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

Junior Member Mensajes: 63 Fecha de incorporación: 28/05/12 Mensajes recientes
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