Prado\Web\UI\ActiveControls\TValueTriggeredCallback::getTriggerOptions PHP Method

getTriggerOptions() protected method

protected getTriggerOptions ( ) : array
return array list of timer options for client-side.
    protected function getTriggerOptions()
    {
        $options = parent::getTriggerOptions();
        $options['PropertyName'] = $this->getPropertyName();
        $options['Interval'] = $this->getInterval();
        $options['Decay'] = $this->getDecayRate();
        return $options;
    }