Skip to content

Commit 74e85f5

Browse files
authored
[bugfix] yiiActiveFormData is undefined
wait until `document.ready` not `window.load`. <wbraganca#274>
1 parent bebb469 commit 74e85f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DynamicFormWidget.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public function registerAssets($view)
217217
$view->registerJs($js, $view::POS_READY);
218218

219219
$js = 'jQuery("#' . $this->formId . '").yiiDynamicForm(' . $this->_hashVar .');' . "\n";
220-
$view->registerJs($js, $view::POS_LOAD);
220+
$view->registerJs($js, $view::POS_READY);
221221
}
222222

223223
/**

0 commit comments

Comments
 (0)