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

autoDataBindProperties() protected method

Auto databinding properties of the control.
protected autoDataBindProperties ( )
    protected function autoDataBindProperties()
    {
        if (isset($this->_rf[self::RF_AUTO_BINDINGS])) {
            if (($context = $this->getTemplateControl()) === null) {
                $context = $this;
            }
            foreach ($this->_rf[self::RF_AUTO_BINDINGS] as $property => $expression) {
                $this->setSubProperty($property, $context->evaluateExpression($expression));
            }
        }
    }
TControl