I have a data grid in which I want to show the paging summary on desktops and hide them on mobile devices. I have set it as follows:
ShowPagingSummary="@(IsMobileDevice == false)"
PageSizeOptions=@(new int{25, 50, 100})
When I run this on mobile device, it stills shows the paging summary. If I remove PageSizeOptions, then it works correctly.
Is this by design? Is there a workaround? Thanks.
enchev
2
As far as we know these are not connected in any way:
Setting ShowPagingSummary to false and PageSizeOptions in our demos works as expected:
Thank you for your response.