Archive forFebruary, 2010

Version 0.6

Hi,

Version 0.6 will be release during this month. It has a lot of new and great features.

Zend_Config Support

$grid = Bvb_Grid_Data::factory('Bvb_Grid_Deploy_Table',Zend_Config $options);

Zend_Db_Table_Abstract Support
Now you can define the grid by passing only the model:

$grid->setModel(new Bugs());
echo $grid;

CRUD operations now use Zend_Form
You can easily setup forms by passing the model or defining all fields manually

$form = new Bvb_Grid_Form();
$form->setModel(new Bugs());
$grid->addForm($form);

If you don’t set any model, Bvb_Grid_Form will use the model provided with $grid->setModel();

New deploy classes

New Fields Options
Fields have now more options and more well defined. Below is a list of all different options:

  • helper// Zend_View Helper
  • order//Alllow field to be ordered, or not
  • title
  • remove
  • escape
  • hidden
  • decorator
  • hRow
  • position
  • orderField
  • class
  • searchType
  • searchTypeFixed
  • search
  • format
  • callback
  • style

Multi Grids per page
You can now have multi grids per page with all options (order, filters, pagination) and they won’t interfere between them .

$grid = Bvb_Grid_Data::factory('Bvb_Grid_Deploy_Table',Zend_Config $options,'grid_id');

Bug Fixes & Performance
A lot of bug fixes and performance improvements.

TEST IT
The release will happen this month, bu testers are needed so the launch can occur without troubles. Get the latest source from the project page http://code.google.com/p/zfdatagrid/

New Features (Features for 0.6 closed)
If you would like to see more functionality, this is the time to speak. Please open a new report here http://code.google.com/p/zfdatagrid/issues/list or send an email trough here http://zfdatagrid.com/contact/

Check the examples
Try the latest features here http://zfdatagrid.com/grid/ and don’t forget to take a look at source http://zfdatagrid.com/grid/default/site/code

Best Regards,
Bento Vilas Boas

Comments (18)