How do I quickly develop a sortable, paged data grid of a MySQL table in PHP/JavaScript?
If the grid could sort/page and download data via AJAX it would work better, of course 🙂
I could develop it manually using AJAX to update the datagrid on sort/page navigation, but I was wondering if any datagrid components already existing that would do the same.
I’ve never used a PHP framework before so if you recommend one I’d appreciate some help in getting started configuring/using its features to get a MySQL table outputted as a datagrid.
I found a few PHP/Javascript solutions that show datagrids of MySQL tables:
jqGrid is a grid component for ASP.NET & PHP, that supports row editing, sorting, paging, searching and even nested grids!
site
SlickGrid is an unlimited-scrolling grid component that supports sorting, and editors per column type, such as Checkboxes, Dates, Progress bars, etc.
blog entry
Ext.ux.Livegrid is a grid component that connects to a database backend and renders large sets of data into a grid, without the need of paging.
site