This is a migrated thread and some comments may be shown as answers.

setting the height of a virtual scrollable grid hides the footer

1 Answer 48 Views
Grid
This is a migrated thread and some comments may be shown as answers.
James
Top achievements
Rank 1
James asked on 30 Aug 2016, 06:42 PM

hi,

i have a virtual scrollable grid for which i set the height:

.Resizable(resize => resize.Columns(true))

        .Scrollable(scrollable => scrollable.Virtual(true))
        Scrollable(s => s.Height("500px"))

 

i also need to display custom record count using footerTemplate

columns.Bound(o => o.TradeNumber).Width(130).Groupable(false).Locked(true).FooterTemplate("Total records: " + recordCount);

 

setting the height above hides the footer.  but i need to set the height since its virtual and i need it scrollable.

what can i do?

 

thanks.

1 Answer, 1 is accepted

Sort by
0
Kostadin
Telerik team
answered on 01 Sep 2016, 02:29 PM
Hi James,

Please try setting the height as integer and not string and let me know about the result.
.Scrollable(scrollable => scrollable.Virtual(true).Height(500))


Regards,
Kostadin
Telerik by Progress
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Grid
Asked by
James
Top achievements
Rank 1
Answers by
Kostadin
Telerik team
Share this question
or