Prado\Web\UI\ActiveControls\TActiveHyperLink::setTarget PHP Метод

setTarget() публичный Метод

Sets the target window or frame to display the Web page content linked to when the THyperLink component is clicked.
public setTarget ( $value )
    public function setTarget($value)
    {
        if (parent::getTarget() === $value) {
            return;
        }
        parent::setTarget($value);
        if ($this->getActiveControl()->canUpdateClientSide()) {
            $this->getPage()->getCallbackClient()->setAttribute($this, 'target', $value);
        }
    }