This is my code, just simple test with 1 <liferay-ui:input-editor />
and 1 button that call to server and swich [render] value (true [render as default] - false)
first time I load this CK it show my value [this is .....], click on [test it] button and then, click it again to rerender CK editor, my value is gone !? can anyone show me why please!
I had tried, set [render] = false as default, when click on button, CK render with my value, but not on second times it rerender.
ps: liferay 6.1 ga 1 and icefaces 3
<h:form id="test">
<ice:panelGroup rendered="#{CchcDmFeedbackController.render == true}">
<liferay-ui:input-editor toolbarSet="editInPlace" value="this is my test text value"/>
</ice:panelGroup>
<ice:commandButton value="test it" actionListener="#{CchcDmFeedbackController.actionTest}"/>
</h:form>