<p:datalist>
我正在尝试使用 a跟踪从 a 中选择的项目<p:selectBooleanButton>
。我正在使用下面的代码片段来呈现列表。
<p:dataList value="#{movies.lazyModel}" var="movie" id="movies" paginator="true" rows="10"
paginatorTemplate="{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink}"
type="none" paginatorAlwaysVisible="false" lazy="true" rowIndexVar="currentRow" >
<p:panel id="movieInfo">
<!-- content markup -->
<div id="rent">
<p:selectBooleanButton offLabel="Add to Cart" onLabel="Remove from Cart" id="btnRent"
value="#{movies.checkedItems[currentRow]}">
<p:ajax update="btnRent" listener="#{movies.updateCart()}" event="click" process="btnRent"/>
</p:selectBooleanButton>
</div>
</p:panel>
</p:dataList>
BackingBean
@ManagedBean(name = "movies")
@ViewScoped
public class MovieListBean extends BaseBean implements Serializable
{
private static final long serialVersionUID = -1887386711644123475L;
....
private boolean[] checkedItems;
@PostConstruct
public void initialize()
{
int totalRows = serviceLocator.getMovieService().getCatalogSize();
checkedItems = new boolean[totalRows];
}
....
public void updateCart()
{
if (lazyModel != null)
{
int selectedIndex = lazyModel.getRowIndex();
System.out.println("Selected row in datalist - " + selectedIndex);
System.out.println("Object instance associated with selected row - " + lazyModel.getRowData());
System.out.println("checkedItems[" + selectedIndex + "] - " + checkedItems[selectedIndex]);
}
}
public boolean[] getCheckedItems() {
return checkedItems;
}
public void setCheckedItems(boolean[] checkedItems) {
this.checkedItems = checkedItems;
}
}
我已经看到了关于 SO 的解决方案以及通过使用演示相同的文档,<f:setPropertyActionListener>
但它要求您使用ActionSource
,即 commandButton 或 commandLink。此外,它们中的大多数是用于<p:dataTable>
.
在我的示例中不是这种情况,因为我必须从集合中添加/删除对象以及更新标题文本中的计数。这将在侦听器中实现,但似乎没有被触发。
所以,我的问题是如何在仍然使用 dataList 的同时改变我的方法。使用上面的代码片段也会破坏分页。
我正在使用 JSF 2.1 (Mojarra) + PrimeFaces 3.5