Skip to content

Instantly share code, notes, and snippets.

@63phc
Created December 29, 2016 04:26
Show Gist options
  • Save 63phc/8bf9eb53f156aa86287d374f5f5a9246 to your computer and use it in GitHub Desktop.
Save 63phc/8bf9eb53f156aa86287d374f5f5a9246 to your computer and use it in GitHub Desktop.
public function actionNewAddons()
{
\Yii::$app->response->format = Response::FORMAT_JSON;
$item = new TypeCarAddons();
$item->loadDefaultValues();
return [
'success' => 1,
'data' => $this->renderPartial('partial/update/_addons_item', ['form' => new ActiveForm(), 'item' => $item, 'key' => uniqid()])
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment