I have a project to Migrate icefaces 1.8 to 3.3 . This is the first time I am doing this conversion process and facing lots of difficulties. I am very new to Icefaces, so pardon me if I ask any silly questions. I can able to run the project in Icefaces 3.3 But some of the functionality was not working properly .I’m facing issue in Partial submit .Can you please provide the alternative code for the below.
<ui:define name="content">
<ice:form id="stackForm" partialSubmit="true">
…….
<ice:commandLink actionListener="#{item.userObject.selectPanelStackPanel}"
action="#{tree.planNodeSelected}" partialSubmit="true">
<ice:outputText id="treeContentTxt" value="#{item.userObject.plan }" rendered="#{item.leaf}" />
<f:param name="param1" value="#{item.userObject.param1}" />
<f:param name="param2" value="#{item.userObject.param2}" />
<f:param name="param3" value="#{item.userObject.param3}" />
<f:param name="param4" value="#{item.userObject.param4}" />
</ice:commandLink>
……..
</ice:form>
</ui:define>