I'm having some trouble displaying the Grid's pager info component. Per the documentation and demo at https://www.telerik.com/kendo-react-ui/components/grid/paging/, I am attempting to set the grid's pager in the following manner:
However, when the grid is rendered, the div containing the pager info is still set to display: none, seemingly being set by
~@progress/kendo-theme-bootstrap/dist/all.scss.
I'm therefore having to apply the following styling in order to render the pager info:
But of course, this applies to all instances of my grid. I can work around this problem by using more specific css selectors, but I'd like to be able to simply use the info attribute of GridPagerSettings to render the pager info div.
Any insight or assistance would be hugely appreciated!
I am using "kendo-react-grid": "^5.10.1"
const pagerSettings: GridPagerSettings = { type: "input", pageSizes: [10,100], info: true };
<Grid
pageable={pagerSettings}
...
>
...
</Grid>
~@progress/kendo-theme-bootstrap/dist/all.scss.
I'm therefore having to apply the following styling in order to render the pager info:
.k-pager-info {
display: block !important;
}
Any insight or assistance would be hugely appreciated!
I am using "kendo-react-grid": "^5.10.1"