Grido\Components\Filters\Filter::getControl PHP Метод

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

public getControl ( ) : BaseControl
Результат Nette\Forms\Controls\BaseControl
    public function getControl()
    {
        if ($this->control === NULL) {
            $this->control = $this->getForm()->getComponent(self::ID)->getComponent($this->getName());
        }
        return $this->control;
    }