我有这个带有 a4j:support 标签的数据表,所以当有人点击一行时,我想根据所选行的状态显示或隐藏某些按钮。
问题是我的支持 bean 中的数据总是一键落后。
<rich:extendedDataTable
id="formSummaryTableId"
var="dataSummary"
value="#{FormSearch.summaries}"
binding="#{FormBacking.table}"
selection="#{FormSearch.selection}"
rowKeyVar="rkv"
frozenColCount="0"
sortMode="single" height="500px" width="795px"
cellpadding="0" cellspacing="0" border="0" rowClasses="even, odd"
selectedClass="itemSelected">
<a4j:support event="onRowClick" actionListener="#{FormBacking.onClickForm}"
reRender="DesignerForm:formEditToolbar" />
....
FormBacking.onClickForm
public void onClickForm(ActionEvent e)
{
Iterator<Object> selectionKeys = getFormSearch().getSelection().getKeys();
LOG.info("selectionKeys = "+selectionKeys.hasNext());
if (selectionKeys.hasNext())
{
LOG.info("selectionKeys.next()");
Integer lookupKey = (Integer) selectionKeys.next();
LOG.info("lookupKey = "+lookupKey);
} else {
LOG.info("THERE is no keys");
}
}
编辑
我发现由于某种原因,当我单击一行时,它的设置不正确。就好像它比我的点击慢了 1 步。例如,如果我单击数据表的第 1 行,我的方法将进入“没有键”,但如果我现在单击第 2 行,我的方法将具有我单击的第一行的键。
为什么会落后 1 次?