This question is locked. New answers and comments are not allowed.
The default pagesizesindropdown shows 5, 10, 20, 50 as choices. I am changing this array in the grid OnLoad event. The new assignment seems to take okay in the script but my change is not displayed on the page.
Please show me a way to set the select list options to the desired values.
In the grid onload event:
var grid = $(this).data("tGrid");
var sizesInDropDown = [10,20,30,40];
grid.pageSizesInDropDown=sizesInDropDown;
Please show me a way to set the select list options to the desired values.