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

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

Continue bubbling the "edit" command, "delete" command is handled in this class.
public bubbleEvent ( $sender, $param )
    public function bubbleEvent($sender, $param)
    {
        switch (strtolower($param->getCommandName())) {
            case 'delete':
                return $this->deleteRecord($sender, $param);
            case 'edit':
                $this->initializeEdit($sender, $param);
        }
        $this->raiseBubbleEvent($this, $param);
        return true;
    }