Fixes empty reference when using Form widget outside FormController

This commit is contained in:
Sam Georges 2014-08-30 09:49:48 +10:00
parent aaffeacf1d
commit 0243f47651
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ class Form extends WidgetBase
*/
public function renderFieldElement($field)
{
return $this->makePartial('field_'.$field->type, ['field' => $field]);
return $this->makePartial('field_'.$field->type, ['field' => $field, 'formModel' => $this->model]);
}
/**