Prado\Web\UI\WebControls\TBulletedList::raisePostBackEvent PHP Method

raisePostBackEvent() public method

This method is required by {@link IPostBackEventHandler} interface. If {@link getCausesValidation CausesValidation} is true, it will invoke the page's {@link TPage::validate validate} method first. It will raise {@link onClick OnClick} events. This method is mainly used by framework and control developers.
public raisePostBackEvent ( $param )
    public function raisePostBackEvent($param)
    {
        if ($this->getCausesValidation()) {
            $this->getPage()->validate($this->getValidationGroup());
        }
        $this->onClick(new TBulletedListEventParameter((int) $param));
    }