Prado\Web\UI\ActiveControls\TActiveFileUpload::getClientOptions PHP Method

getClientOptions() protected method

Gets the client side options for this control.
protected getClientOptions ( ) : array
return array ( inputID => input client ID, flagID => flag client ID, targetName => target unique ID, formID => form client ID, indicatorID => upload indicator client ID, completeID => complete client ID, errorID => error client ID)
    protected function getClientOptions()
    {
        $options['ID'] = $this->getClientID();
        $options['EventTarget'] = $this->getUniqueID();
        $options['inputID'] = $this->getClientID();
        $options['flagID'] = $this->_flag->getClientID();
        $options['targetID'] = $this->_target->getUniqueID();
        $options['formID'] = $this->getPage()->getForm()->getClientID();
        $options['indicatorID'] = $this->_busy->getClientID();
        $options['completeID'] = $this->_success->getClientID();
        $options['errorID'] = $this->_error->getClientID();
        $options['autoPostBack'] = $this->getAutoPostBack();
        return $options;
    }