|
Title: Bug with datagrid methode getPager Post by: Stefan B. on May 08, 2014, 02:43:22 AM Since Version 1.3 we can set the pagePosition on datagrid. This defines the position of the pager bar. When i set pagePosition='both' the pagination is shown on top and bottom. That's working.
But when I add user defined buttons to the pageination like the following code, the buttons are only on the pagination at the datagrid bottom! This looks like a bug. Code: var pager = $('#dg').datagrid('getPager');Title: Re: Bug with datagrid methode getPager Post by: stworthy on May 08, 2014, 07:45:25 AM Please try the code below to solve your issue.
Code: var pager = $('#dg').datagrid('getPager');Title: Re: Bug with datagrid methode getPager Post by: Stefan B. on May 09, 2014, 06:51:35 AM Hello. That works fine.
Please try the code below to solve your issue. Code: var pager = $('#dg').datagrid('getPager');If I use extra configuration array it's works also Code: $('#dg').datagrid('getPager').pagination({ |