cancel
Showing results for 
Search instead for 
Did you mean: 

Remove Table's Footer

Former Member
0 Kudos

Hi everyone,

I'm doing a webdypro application with Java. I set a table's footerVisible attribute to false in order to remove table's footer. But when the table is filled with the records which number is more than visibleRowCount setting, the footer will appear again. How to remove the footer forever? Any suggestion is appreciated.

Best Regards,

Julian

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Set the VisibleRowCount property to the number of records

And then remove the footer

Regards

Saravanan K

Former Member
0 Kudos

Julian,

Footer is removed only if number of visible rows is more or equals to total number of rows.

So set visibleRowCount=-1 for Table UI control -- this will show all rows and let footer be removed.

Valery Silaev

EPAM Systems

http://www.NetWeaverTeam.com

Former Member
0 Kudos

A little off topic: Algebraic logic sometimes works strange in programmer's minds ;o)

Former Member
0 Kudos

Markus,

Complete OT: I devoted blog post to this issue (as it appears in JavaScript, thought): /people/valery.silaev/blog/2006/07/14/simple-arithmetic

Could you ever imaging multiplication between String and Date?

Valery Silaev

EPAM Systems

http://www.NetWeaverTeam.com

Former Member
0 Kudos

I don't consider this "strange".

Perhaps a constant like

static final int ALL_ROWS = -1;

would make it more clear.

Armin

Former Member
0 Kudos

C'mon, Armin!

We are just kidding.

Try to read it this way:

<b>All <i>(-1)</i> is less then Nothing <i>(0)</i></b>

Philosophical statement...

VS

Former Member
0 Kudos

I just didn't like pushing me in the "programmers" corner

Armin

Former Member
0 Kudos

Hi,

Please find rowcount at runtime then assign into context. From context you can assign into table's visibleRowCount property.

Kind Regards,

S.Saravanan.