table bound to VO not showing data at first load....
I have a table that is bound to a detailed VO object. When I edit the parent row, at the very first time, the table doesn't show any data even there should be. If I click "Cancel" in the edit, and then edit the parent row again, the table shows data and no problem at all after that.
Based on that info, it lookes like the view link between master and detail should be fine.
What I suspect is that when I select parent, maybe the details VO are not synced with the parent VO row. Is there a way to fix this? or maybe it's due to some other issue?
Your help is highly appreciated.
My table is shown below:
<af:table value="#{bindings.EmRuleCondActions.collectionModel}"
var="row" rows="#{bindings.EmRuleCondActions.rangeSize}"
varStatus="status"
emptyText="#{bindings.EmRuleCondActions.viewable ? coreeventuiBundle.NO_DATA_AVAILABLE : coreeventuiBundle.ACCESS_DENIED}"
fetchSize="#{bindings.EmRuleCondActions.rangeSize}"
rowBandingInterval="0"
columnStretching="last"
selectedRowKeys="#{bindings.EmRuleCondActions.collectionModel.selectedRow}"
rowSelection="single" id="actsTbl"
selectionListener="#{pageFlowScope.allActsUIBean.onRowSelect}">
.....
</af:table>