consultnn/yii2-multi-embedded-widget

用于多个mongodb嵌入式文档的Yii2小部件

1.0 2015-07-24 08:00 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:36:48 UTC


README

嵌入式文档行为(https://github.com/consultnn/yii2-mongodb-embedded)

示例

echo $form->field($model, 'phones', ['options' => ['class' => 'col-lg-6 col-sm-6']])->widget(
    \consultnn\widgets\MultiEmbedded::className(),
    [
        'form' => $form,
        'embeddedModelClassName' => \common\models\Phone::className(),
        'embeddedFormName' => Html::getInputName($model, 'phones')
    ]
);