Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

table bound to VO not showing data at first load....

User735345-OracleSep 26 2010 — edited Sep 27 2010
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>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 25 2010
Added on Sep 26 2010
2 comments
531 views