zend framework - ZFDataGrid table width -


i'm using zfdatagrid display table within zend app. how fix width of table? can't find setting in grid.ini.

public function displaytemptableaction() {     $config = new zend_config_ini(application_path.'/grids/grid.ini', 'production');      $db = zend_registry::get("db");      $grid = bvb_grid::factory('table',$config,$id='');     $grid->setsource(new bvb_grid_source_zend_table(new model_dbtable_tmpteamraceresult()));      //crud configuration     $form = new bvb_grid_form();     $form->setadd(false)->setedit(true)->setdelete(true);     $grid->setform($form);      $grid->setpagination(0);     $grid->setexport(array('xml','pdf'));     $this->view->grid = $grid->deploy(); } 

zfdatagrid table width

it seems table width controlled via css file in folder './public/styles'

td div input[type='text'] {     width: 98% !important;     border: 1px solid #ddd; } 

another nice api rubbish documentation.


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -