Using PortletPreferences in Liferay
How to saving a portlet preferences in liferay:
Getting the values from preferences:
private PortletPreferences portletPreferences;
private String criterioBusca="Something";
portletPreferences.setValue("criterioBusca", criterioBusca);
portletPreferences.setValue("fecha", fecha);
portletPreferences.setValue("categoriaHistorico", categoriaHistorico);
portletPreferences.store();
Getting the values from preferences:
private String fecha = "";
fecha = portletPreferences.getValue("fecha", null);
Post a Comment