我正在使用Icefaces 1.8.2
with在action 方法jsf 1.1
之前不调用目标字段的 setter方法。commandLink
<ice:panelSeries id="deptSeries" value="#{sessionScopedBean.deptList}" var="dept">
......
<ice:commandLink actionListener="#{myActionBean.search}">
<f:setPropertyActionListener target="#{sessionScopedBean.searchList}"
value="#{dept.myList}"/>
<ice:graphicImage title="search" url="/images/search.gif"/>
<f:param name="user" value="#{userBean.name}"/>
</ice:commandLink>
......
</ice:panelSeries>