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