我正在使用liferay来构建portlet。我正在创建一个默认状态为“折叠”的手风琴。当我扩展手风琴并从帐户退出并重新登录时,手风琴会保持扩展状态。如何在每次重装时折叠手风琴?
<liferay-ui:panel-container accordion="false" extended="true">
<liferay-ui:panel title="label.upload.information"
defaultState="collapsed" persistState="true" id="documentInformations"
cssClass="documentInformations">
<aui:col width="30">
<table>
<tr>
<td><strong><liferay-ui:message key="label.upload.title" /></strong></td>
<td> </td>
<td><%=title%></td>
</tr>
<tr>
<td><strong><liferay-ui:message key="label.upload.speciality" /></strong></td>
<td> </td>
<td><%=speciality%></td>
</tr>
</table>
</aui:col>
</liferay-ui:panel>