Can anybody suggest a PHP solution for the creation of fast customizable, data-drive tables? More specifically, I'm looking for a way to, if possible
set the header style, row and alternating row style, footer style. (Ideally, these are CSS)
supply column names and sizes
Configure a data source to the tune of an array of objects where each object represents a row in the table.
Have columns sortable
Allow the table to be 'page-able'
In pseudo code, a solution may take the form of the following:
<table definition datasource=$customer_list headerCSSstyle=headercss rowCSSstyle=rowcss alternatingCSSstyle=altrowcss footerCSSstyle=footercs rowsperpage=20>
<column name="Customer Name" sortable=true width=20px/>
</table>
As I'm coming over from ASP.NET, I'm still in that mindset, so please educate me as to the "PHP Way"...it's really appreciated.
-- Aaron