Prado\Web\UI\WebControls\TImageButton::getPostBackOptions PHP Méthode

getPostBackOptions() protected méthode

This method is used by framework and control developers.
protected getPostBackOptions ( ) : array
Résultat 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;
    }