Most awaiting feature of File Upload support is added to the latest build of PHP Grid Control. With just little config settings, you can upload file to a folder on your server. You can also use on_insert / on_update callbacks to store the uploaded content in database or email as per your need.
Following settings [...]
Now you can have a grouped headers in phpgrid control. It would help in categorizing your related columns. See screenshot.
The grid configuration is fairly simple, by calling following function with desired parameters.
// group columns header $g->set_group_header( array( “useColSpanStyle”=>true, “groupHeaders”=>array( array( “startColumnName”=>’name’, // group starts from this column “numberOfColumns”=>2, // [...]
I’ve added twitter bootstrap support with PHP Grid Control. Now you can integrate it seemlessly in Twitter Bootstrap based UI layouts based . Here are few highlights.
You can see sample live demo here. This is currently available with premium version. Existing [...]
On the request of few customers, i’ve added a new feature that allows you to clone a row in grid. It will make exact copy of the records in database table (with new pk) giving a flavor of copy-paste.
Hi,
Just added new formatting feature, Column Color Formatting, which enables you to set color and css style of some specific column of grid just like we do in excel.
// if nothing set in ‘op’ and ‘value’, it will set column formatting for all cell
$f = array();
[...]
I recently added autocomplete feature in PHP Grid control, which enabled the features like DB driven type ahead and autocomplete by database lookup query. Very useful if you have a dropdown with a lot of data coming from database and searching is only there by scrolling, you can simple plug that out and integrate autocomplete [...]
I’ve released a new version for premium customers covering several features and fixes. Here are the updates.
Screenshots are available at g+ page. Here is direct link, You can see them in live at Demo Center.
Features – HTML editor integration (editing/html-editor.php) – FancyBox integration (appearence/fancy-box.php) – Loading Grid from phpArray [...]
We’ve added another sample of php grid, where Fancy Box is linked with the click event of images on PHP Grid. Here is the screenshot.
When i switch development technology from ASP.net to PHP, I really miss the readymade controls like gridview, listview and others. For filling the shortcomings of PHP, I worked on a PHP based Grid Control, that is very easy to configure (simple as table mapping) and provides much much more functions as compared to ASP.net gridview [...]
After several requests from valuable customer, i’ve added option to display php grid from php array data as input (no database connection required).
It’s usage is very simple. Suppose you have an array, then all you have to do is to pass it in table parameter. See code sample below. Do consider the format of [...]

