我不太了解表格中过滤器的文档,当用户在过滤器输入中输入内容时如何更新?当我在我的示例中尝试时,这些值不会改变。我在控制器中的表的当前代码是这样的:
$db = Zend_Db_Table::getDefaultAdapter();
$grid = Bvb_Grid::factory('Table');
$select = $db->select()->from('hosts');
$grid->setSource(new Bvb_Grid_Source_Zend_Select($select));
$grid->setImagesUrl('./images/');
$grid->setUseKeyEventsOnFilters(true);
$grid->saveParamsInSession(true);
$myGrid = $grid->deploy();
$this->view->hosts = $myGrid;
为了让过滤器更新表格内容,我需要添加什么?
感谢您的阅读。