Hi Duff,
Thank you for the provided images.
Achieving the same result needs another selector for targeting the pager dropdown. After getting the needed instance, add the "all" option to the datasource of the pager dropdown. Here is an example:
$( document ).ready(function() {
var grid = $('#grid').data('kendoGrid');
var pageSizeDropDownList = $(".k-pager-sizes").find("select").data("kendoDropDownList");
pageSizeDropDownList.dataSource.add({text:"All", value:'all'});
pageSizeDropDownList.dataSource.sync();
});
The complete example of the implementation could be found in the demo below:
Let me know if further assistance is needed.
Best Regards,
Anton Mironov
Progress Telerik