cancel
Showing results for 
Search instead for 
Did you mean: 

Display of row index in table footer

Former Member
0 Kudos

Hi,

Row no of first row is generally displayed in the footer of the table as

Row <first row rowno> of <total no of rows>.Eg Row 1 of 10.

Can this be changed to display row no of currently selected row insted of first row?

Thanks in advance,

Apurva.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hai ,

See this thread,

this may give you some hints

Regards,

Naga

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Bharathwaj ,

Thank you for such quick response.So I have to disable default footer and create custom footer using IFooterRenderer.

Can you suggest any documentaion/code that will help me in performing this task?

Regards,

Apurva

Former Member
0 Kudos

Hi ,

You would not be able to extend the UI per se..

Instead you can make use of the property "firstVisibleRow" and "visiblerows" .

When a user clicks a button to bring down the entries by one

- increase the firstvisiblerow property by 1

when he wants to move to next page ,

- increase the firstvisiblerow property to firstvisiblerow+visiblerows

Use the table toolbar for scrolling..and placing your elements as it would always be properly aligned to your table..

Regards

Bharathwaj..

Former Member
0 Kudos

Hi ,

There are no configurations available. You have to implement your own footer by getting the leadselection property.

Regards

Bharathwaj