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

getPostBackOptions() protected method

This method is used by framework and control developers.
protected getPostBackOptions ( ) : array
return array parameters about how the button defines its postback behavior.
    protected function getPostBackOptions()
    {
        $options['ID'] = $this->getClientID();
        $options['EventTarget'] = $this->getUniqueID();
        $options['CausesValidation'] = $this->getCausesValidation();
        $options['ValidationGroup'] = $this->getValidationGroup();
        $options['StopEvent'] = true;
        return $options;
    }