Prado\Web\UI\TControl::getClientID PHP Method

getClientID() public method

The client ID can be used to uniquely identify the control in client-side scripts (such as JavaScript). Do not rely on the explicit format of the return ID.
public getClientID ( ) : string
return string the client ID of the control
    public function getClientID()
    {
        return strtr($this->getUniqueID(), self::ID_SEPARATOR, self::CLIENT_ID_SEPARATOR);
    }
TControl