Prado\Web\UI\WebControls\TCheckBoxList::raisePostDataChangedEvent PHP Method

raisePostDataChangedEvent() public method

This method is required by {@link \Prado\Web\UI\IPostBackDataHandler} interface. It is invoked by the framework when {@link getSelectedIndices SelectedIndices} property is changed on postback. This method is primarly used by framework developers.
    public function raisePostDataChangedEvent()
    {
        if ($this->getAutoPostBack() && $this->getCausesValidation()) {
            $this->getPage()->validate($this->getValidationGroup());
        }
        $this->onSelectedIndexChanged(null);
    }