Check documentation for the latest version of dhtmlxSuite setPagingSkin DHTMLX Docs

setPagingSkin

allows setting a custom paging skin

void setPagingSkin(string name);
namestringthe skin's name (default,toolbar,bricks)

Example

//set the "bricks" paging skin
mygrid.setPagingSkin("bricks");
//set the "toolbar" paging skin with the "dhx_skyblue" toolbar's skin
mygrid.setPagingSkin("toolbar");
//set the "toolbar" paging skin with the "dhx_web" toolbar's skin
mygrid.setPagingSkin("toolbar","dhx_web");

Back to top