Prado\Web\UI\WebControls\TKeyboard::registerStyleSheet PHP Method

registerStyleSheet() protected method

It will register the CSS file specified by {@link getCssUrl CssUrl}. If that is not set, it will use the default CSS.
protected registerStyleSheet ( )
    protected function registerStyleSheet()
    {
        if (($url = $this->getCssUrl()) === '') {
            $url = $this->getApplication()->getAssetManager()->publishFilePath(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'keyboard.css');
        }
        $this->getPage()->getClientScript()->registerStyleSheetFile($url, $url);
    }