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!

ADF Table shows Fetching Data

sashwinJun 13 2013 — edited Jun 17 2013

Hi,

I am new to ADF development and I am working with JDeveloper 11.1.1.7.

I have a table component inside a panel collection. The table properties are as below

                            <af:table value="#{bindings.ASRTUsersAllowedVO1.collectionModel}"
                                      var="row"
                                      rows="#{bindings.ASRTUsersAllowedVO1.rangeSize}"
                                      emptyText="#{bindings.ASRTUsersAllowedVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                      fetchSize="#{bindings.ASRTUsersAllowedVO1.rangeSize}"
                                      rowBandingInterval="0"
                                      filterModel="#{bindings.ASRTUsersAllowedVO1Query.queryDescriptor}"
                                      queryListener="#{bindings.ASRTUsersAllowedVO1Query.processQuery}"
                                      filterVisible="true" varStatus="vs"
                                      selectedRowKeys="#{bindings.ASRTUsersAllowedVO1.collectionModel.selectedRow}"
                                      selectionListener="#{bindings.ASRTUsersAllowedVO1.collectionModel.makeCurrent}"
                                      rowSelection="single"
                                      binding="#{backingBeanScope.ASReqHome.t1}"
                                      id="t1"
                                      partialTriggers="::ctb2 :::cl2" width="600">

The table at run time shows the message 'Fetching Data...'. The data never appears. I am not able to reproduce this at will. The issue randomly comes and goes. I can get around this by setting the contentDelivery to immediate. However, I read in one of the discussions that the issue surfaces again while scrolling through the data. Why does this occur and how to get rid of this ?

Appreciate any help !

Thanks,

Ashwin

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 15 2013
Added on Jun 13 2013
5 comments
1,778 views