I am trying to make the page selector of the grid which in the footer to center. But no property is aligning that to center. As per requirement I can not use margin as I am using responsive screen I used display:inline-block but no use. (This happened after doing kendo upgrade) Can anyone help me with this issue using media queries.
@media all and (max-width :400px)
{
.pager-sizes
{
display:inline-block;
}
}
Not sure which version you are on, but currently the pager is using a flexbox layout. So you can prepend an element with the
k-spacerclass that is used to separate items in toolbars. For the latest version it does the trick:$(".k-grid-pager").prepend('<div class="k-spacer"></div>')Here is an example.