Following the example here: http://docs.telerik.com/devtools/wpf/controls/raddatapager/how-to/change-page-size-dynamically
but on an unbound DataPager.
The two way binding of the combo box to the PageSize seems to work, as the number of pages is changed to reflect the selected value. However, there is no event that allows me to set the items on the grid view, which is normally done in the PageIndexChanged event handler.
Currently, I am adding a SelectionChanged event handler to the combo box from which I call the same implementation as in the DataPager's PageIndexChanged handler, but this seems like it should be unnecessary.
Am I missing something?