Prado\Web\UI\ActiveControls\TActiveTableRow::bubbleEvent PHP Метод

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

This method overrides parent's implementation and raises the control's callback event. This will fire the {@link onRowSelected OnRowSelected} event if an appropriate event handler is implemented.
public bubbleEvent ( $sender, $param ) : boolean
Результат boolean whether the event bubbling should stop here.
    public function bubbleEvent($sender, $param)
    {
        if ($param instanceof TActiveTableCellEventParameter) {
            $this->raiseCallbackEvent($param);
            return true;
        } else {
            return false;
        }
    }