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

bubbleEvent() public method

This method should be overriden to provide customized response to a bubbled event. Check the type of event parameter to determine what event is bubbled currently.
See also: raiseBubbleEvent
public bubbleEvent ( $sender, $param ) : boolean
return boolean true if the event bubbling is handled and no more bubbling.
    public function bubbleEvent($sender, $param)
    {
        return false;
    }
TControl