Prado\Web\UI\WebControls\TSlider::getClientSide PHP Method

getClientSide() public method

The slider on the client-side supports the following events. # OnSliderMove -- raised when the slider is moved. # OnSliderChanged -- raised when the slider value is changed You can attach custom javascript code to each of these events
public getClientSide ( ) : TSliderClientScript
return TSliderClientScript javascript validator event options.
    public function getClientSide()
    {
        if ($this->_clientScript === null) {
            $this->_clientScript = $this->createClientScript();
        }
        return $this->_clientScript;
    }