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

[Solved] Paging Display Text Looks Bad

1 Answer 7 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Jeff
Top achievements
Rank 1
Jeff asked on 24 Jul 2012, 01:18 PM
Greetings,

I have the following code to add paging information at the bottom of the grid:

    GridPagerStyles pagerStyles = GridPagerStyles.NextPreviousAndNumeric; 
    foreach (var pagerStyleFlag in pagerStyleFlags) 
    { 
        bool pagerStyle = true; 
        if (pagerStyle == true) { pagerStyles |= pagerStyleFlag.Value; } 
        else { pagerStyles &= ~pagerStyleFlag.Value; } 
    }







.
. then...










).Pageable(paging =>
                          paging.PageSize(20)
                          .Position(GridPagerPosition.Bottom)
                          .Style(pagerStyles)
                         );



The paging numbers, and the "prev" and "next" are scrambled. I assume that I am missing a css file or something. If this is the problem, would someone tell me where I can get those resources?

Thanks,

Jeff













1 Answer, 1 is accepted

Sort by
0
Amita
Top achievements
Rank 1
answered on 13 Nov 2012, 05:38 AM
Hi Jeff,

Did you find a solution for this? I'm going through the same problem.

Many thanks,
Amita
Tags
Grid
Asked by
Jeff
Top achievements
Rank 1
Answers by
Amita
Top achievements
Rank 1
Share this question
or