Prado\Web\UI\WebControls\TImageButton::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['CausesValidation'] = $this->getCausesValidation();
        $options['ValidationGroup'] = $this->getValidationGroup();
        $options['EventTarget'] = $this->getUniqueID();
        return $options;
    }