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

getPostBackOptions() protected method

protected getPostBackOptions ( ) : array
return array postback options used for linkbuttons.
    protected function getPostBackOptions()
    {
        $options['ValidationGroup'] = $this->getValidationGroup();
        $options['CausesValidation'] = $this->getCausesValidation();
        $options['EventTarget'] = $this->getUniqueID();
        $options['EventParameter'] = $this->_currentRenderItemIndex;
        $options['ID'] = $this->getClientID() . $this->_currentRenderItemIndex;
        $options['StopEvent'] = true;
        return $options;
    }