Page list display very long list

Hello

My page list shows all pages therefore, it makes very very long list. How can i display scroll in page list?

Here is my code

ALG = ALW.attachGrid(); .... .... .... ALG.enablePaging(true,25,3,"pager3"); ALG.setPagingSkin("toolbar"); ALG.i18n.paging = App.LocalizePaging;

You may use the aToolbar function to customize a toolbar paging skin.
docs.dhtmlx.com/grid__paging.htm … oolbarskin
Please, try to use the following code
myGrid.load(url,function(){
var myToolbar=myGrid.aToolBar;
myToolbar.setMaxOpen(“pages”,8);
});

Thank you thousands of times.