Hi,
i have a dropdownlist on my gridview to select the pagesize. If the button is changed, i call the following javascript function:
$(\'.change-pageSize\').change(function() {
$.pjax.reload({container:"#scanports", data: "pageSize="+$(this).val()});
});
It works fine and the gridview is reloading. If i changed the selection, the new pageSize will be added to url like
http://xyz.com/scans/view?id=55&pageSize=100&pageSize=50
Is there a solution to change the pageSize parameter and not always add another parameter?
Thanks for help…