Prado\Web\UI\TControl::raiseBubbleEvent PHP Method

raiseBubbleEvent() protected method

A control who wants to bubble an event must call this method in its onEvent method.
See also: bubbleEvent
protected raiseBubbleEvent ( $sender, $param )
    protected function raiseBubbleEvent($sender, $param)
    {
        $control = $this;
        while ($control = $control->_parent) {
            if ($control->bubbleEvent($sender, $param)) {
                break;
            }
        }
    }
TControl