|
Title: Feature Request - Auto Page Size Post by: devnull on March 13, 2013, 05:52:13 AM I have a feature, enhancement request: would it be possible to add an autoPageSize property /method, where the table would automatically set it's page size based on the available height ??
I have been attempting to implement my own, but are having trouble setting the page size: http://jsfiddle.net/Chqxu/9/ Code: function dgResize(data){Title: Re: Feature Request - Auto Page Size Post by: devnull on March 19, 2013, 04:47:46 AM Bump...
This would be a nice feature, having the table set it's optimum page size based on the available space would remove the necessity for the user to manually select the page size to fit their browser. Thanks for considering it. Title: Re: Feature Request - Auto Page Size Post by: stworthy on March 19, 2013, 09:30:43 AM The 'autoPageSize' method can be extended as:
Code: $.extend($.fn.datagrid.methods,{To enable this feature, call 'autoPageSize' method on datagrid. Code: $('#dg').datagrid('autoPageSize'); |