This question is locked. New answers and comments are not allowed.
Greetings,
I have the following code to add paging information at the bottom of the grid:
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