This Kendo UI MCC grid has issues with the page size drop down either not dropping down or if it does the page sizes are displaying to the left. There are no custom .CSS that could be overriding it.
I have Googled this and read about an hour of posts and tried different things but it is not working. I have the latest release installed. The grid has 500 records to show and I have set to display 50 items at a time with a page sizes[] array defined.
.Pageable(pageable => pageable
.PageSizes(new[] { 20, 50, 100, 500 })
.PageSizes(true)
.Info(true)
//.Messages(x => x.Display("{0}-{1} from {2} Cross Reference Records").Empty("No Results"))
.Enabled(true)
.PreviousNext(true)
.Input(true)
.Numeric(true)
.Refresh(true)
//.PageSizes(true)
.ButtonCount(10)
.Refresh(true)
)
Any help would be appreciated.
Thanks