|
Title: bufferview pagination Post by: lloyd on November 11, 2015, 02:56:28 PM Because I have had to change my code to use datagrid bufferview due to better performance with bufferview. Checkrows no longer works with bufferview (see code below). If I remove bufferview checkrows works.
How to I fix this? Code: dg.datagrid({Title: Re: bufferview pagination Post by: jarry on November 11, 2015, 08:08:59 PM The bufferview is used to load buffered data without pagination. You don't need to call 'clientPaging'.
Code: $('#tt').datagrid({Title: Re: bufferview pagination Post by: Pierre on April 03, 2017, 06:46:03 AM Hello
I try to use onCheckAll event on data-grid with scrollview: Code: var state = $(this).data('datagrid');I also try this Code: var data = $('#dg').datagrid('getData');How to check rows on all pages, when using scrollview, please? Thank you. Title: Re: bufferview pagination Post by: jarry on April 04, 2017, 07:54:39 AM Please look at this example http://code.reloado.com/umotof3/edit#preview
Title: Re: bufferview pagination Post by: Pierre on April 05, 2017, 12:46:36 AM Jarry it works awesome, thank you so much for your help.
|