Hello friends I have jquery grid with paging at the footer of the grid,
i have >> > arrows for next and last.. istead of that can i define First Previous , Next and Last
here is the Code which I have for Find, Columns and refresh the Grid..
thanks
Hello friends I have jquery grid with paging at the footer of the grid,
i have >> > arrows for next and last.. istead of that can i define First Previous , Next and Last
here is the Code which I have for Find, Columns and refresh the Grid..
thanks
Rockers, I believe the only way to change those buttons is to
It seems to me the code like following will solve your requirement:
jQuery("span.ui-icon-seek-first").removeClass("ui-icon").text("First");
jQuery("span.ui-icon-seek-prev").removeClass("ui-icon").text("Prev");
jQuery("span.ui-icon-seek-next").removeClass("ui-icon").text("Next");
jQuery("span.ui-icon-seek-end").removeClass("ui-icon").text("Last");
you can use jQuery("#gbox_" + id) as a context of jQuery (second parameter of jQuery), where id is the id of the jqGrid (like "list") if you want modify paging buttons only for one selected jqGrid.