Example #1
0
 public function actionForm($categoryId, $itemId = 0)
 {
     $propValueModel = Kiwi::getPropValueModel(['categoryId' => $categoryId, 'itemId' => $itemId]);
     ob_start();
     ob_implicit_flush(false);
     $form = new ActiveForm();
     ob_get_clean();
     return $propValueModel->formFields($form);
 }