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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Missing Last Record in ADF Table

Jack IssacMar 15 2017 — edited Mar 29 2017

Hi,

I am using JDev 11.1.1.9

I created a read only table from data controls witrh drag and drop. When I scroll downi last or last two row is missing.

This is happenning only when after load page first time. If I refresh page, the issue is solving. I mean, there is no issue after refresh the page.

I can't find why it is happenning and after page refresh it is solving.

I am waiting your helps.

Also,

I added a screenshot to attachment.

In this screenshot, there is a row at end of table; but it is not appearing completely.

CaptureX.PNG

//------------------------------------------------

<af:table value="#{bindings.XView.collectionModel}"

var="row"

rows="#{bindings.XView.rangeSize}"

emptyText="#{bindings.XView.viewable ? 'No data!' : 'No Access!'}"

fetchSize="#{bindings.XView.rangeSize}"

rowBandingInterval="1"

filterModel="#{bindings.XViewQuery.queryDescriptor}"

queryListener="#{bindings.XViewQuery.processQuery}"

varStatus="vs"

selectedRowKeys="#{bindings.XView.collectionModel.selectedRow}"

selectionListener="#{bindings.XView.collectionModel.makeCurrent}"

rowSelection="single" id="t2"

columnStretching="column:c26"

summary="#{portalextensionBundle.XBundle}"

shortDesc="#{portalextensionBundle.XBundle}"

styleClass="AFStretchWidth" autoHeightRows="10"

columnResizing="disabled">

.

.

.

.

</table>

//------------------------------------------------

Thanks,

Jack.

This post has been answered by Ashish Awasthi on Mar 16 2017
Jump to Answer

Comments

Timo Hahn

Have you checked this with different browsers?

Which browser do you use?

What is around the table?

Timo

Jack Issac

Hi @"Timo Hahn",

first of all, thank you for your answer.

I am using Chrome.

Also, I tried in IE, Chrome and Firefox. it is happening in all browser when after page load first time.

Panel box arround the table.

Panel box > Panel box > table.

All panel boxes have default property, except showHeader="always" showDisclosure="false".

Is it relate with used icon in table? Icons are 16px.

Ashish Awasthi

But why are you using nested panel box ?

Once put this table in panel collection and check again

Jack Issac

Hi,

There is no change.

I used nested panel box for design. There is no other resason. it looks better.

Ashish Awasthi
Answer

Once set autoHeightRows property to -1 and set table's height in inlineStyle property like this

height:100px;

and check that with this setting last row appears or not ?

Ashish

Marked as Answer by Jack Issac · Sep 27 2020
Jack Issac

Hi, @"Ashish Awasthi"

Thanks, it worked.

When I set height property. It solved.

Why it happened it?

Ashish Awasthi

Because sometimes tables is not stretched due to additional icons so if we set height then framework stretch table on page load itself .

Glad it worked

Ashish

1 - 7
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 26 2017
Added on Mar 15 2017
7 comments
2,023 views