cancel
Showing results for 
Search instead for 
Did you mean: 

In webdynpro There shouldn't be any empty rows in the table.

Former Member
0 Kudos

Hi all,

Can any one tell about table properties in webdynpro .

There shouldn't be any empty rows in the table. The last page must contain only the remaining number of records. For example, if there is only one record, only one row is to be displayed in the table – not 4 empty rows after the one row.

Reward Points will be awarded

Accepted Solutions (1)

Accepted Solutions (1)

abhimanyu_lagishetti7
Active Contributor
0 Kudos

Hi

set the visibleRowCount Property to -1 and check.

However you will get all the rows inthe table scrolling is not possible in this case.

Regards

Abhimanyu L

Message was edited by:

Abhimanyu Lagishetti

Answers (1)

Answers (1)

Former Member
0 Kudos

hi

Set the table property visibleRowCount property using a context attribute in your code. Set it to the value node (data source) size.

e.g

; wdContext.currentContextElement().set<attributename>(wdContext.node<urnode>().size());

Hope it helps.

regards

LNV