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;
        }
    }