This behavior can be observed with the example below.
https://demos.telerik.com/aspnet-ajax/listview/examples/paging/pagingwithraddatapager/defaultcs.aspx
Enter a value for Page and click the Go button. Either the page will be updated to the expected page or the pager will fail to change the page. Clicking Go again usually seems to work if it failed. It may take a several tries to observe this behavior as it happens inconsistently.
Hello Victor,
Thank you for reporting this issue, we managed to replicate this with a very simplified markup and the issue seems to be caused by the fact that the <span> elements inside the button do not propagate the click event properly.
As a temporary workaround, you can use the following script:
<script>
var $ = $ || $telerik.$;
$(document).ready(function () {
$("body").on("click", ".RadDataPager button > span", function (ev) {
ev.preventDefault();
$(this).closest("button")[0].click();
})
});
</script>
Also, as a token of gratitude for helping us identify the issue, I have updated your Telerik points.
Regards,
Peter Milchev
Progress Telerik