protected function _getSelect()
 {
     $ret = parent::_getSelect();
     $ret->whereEquals('parent_component_id', $this->_getParam('componentId'));
     $ret->whereEquals('ignore_visible', true);
     return $ret;
 }
Example #2
0
 protected function _getSelect()
 {
     $ret = parent::_getSelect();
     $component = Kwf_Component_Data_Root::getInstance()->getComponentByDbId($this->_getParam('componentId'), array('ignoreVisible' => true));
     $ret->whereEquals('component_id', $component->chained->dbId);
     return $ret;
 }
 protected function _getSelect()
 {
     $ret = parent::_getSelect();
     if ($this->_getParam('filter_visible')) {
         $ret->whereEquals('visible', $this->_getParam('filter_visible'));
     }
     return $ret;
 }
 protected function _getSelect()
 {
     $ret = parent::_getSelect();
     if ($this->_model->getProxyModel()->hasColumn('component_id')) {
         $ret->whereEquals('component_id', $this->_getParam('componentId'));
     }
     return $ret;
 }
 protected function _getSelect()
 {
     $ret = parent::_getSelect();
     $ret->whereEquals('deleted', 0);
     if ($this->_getParam('query_deleted')) {
         $ret->whereEquals('deleted', $this->_getParam('query_deleted'));
     }
     return $ret;
 }
 protected function _getSelect()
 {
     $ret = Kwf_Controller_Action_Auto_Kwc_Grid::_getSelect();
     return $ret;
 }