The example below demonstrates column chooser and sortable row features. Click on the column chooser icon in the footbar to reveal the column chooser dialog. To test sortable row, drag a row and move it around.
1 2 3 4 5 6 | $dg = new C_DataGrid("select * from products", "productCode", "products"); $dg -> enable_columnchooser(true); $dg -> set_sortablerow(true); $dg -> display(); |