Prado\Data\ActiveRecord\Scaffold\TScaffoldEditView::bubbleEvent PHP Метод

bubbleEvent() публичный Метод

Otherwise, the bubble event is continued.
public bubbleEvent ( $sender, $param )
    public function bubbleEvent($sender, $param)
    {
        switch (strtolower($param->getCommandName())) {
            case 'save':
                return $this->doSave() ? false : true;
            case 'clear':
                $this->setRecordPk(null);
                $this->initializeEditForm();
                return false;
            default:
                return false;
        }
    }