一个模块,用于在一张表中管理多个关系

安装: 444

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

公开问题: 0

类型:yii2-extension

1.1.0 2021-05-24 16:41 UTC

This package is auto-updated.

Last update: 2024-09-25 00:20:54 UTC


README

使用此工具构建活动网格以管理多个关系。

用法示例

<? use gustarus\activegrid\ActiveGrid; ?>

<? echo ActiveGrid::widget([
  'model' => new Model(),
  'form' => $form, // yii\widgets\ActiveForm
  'models' => $model->quizAnswers,
  'columns' => [
    [
      'class' => ActiveInputColumn::className(),
      'attribute' => 'content',
      'header' => 'Text',
      'headerOptions' => ['class' => 'text-center'],
      'fieldOptions' => ['class' => 'form-control'],
    ],

    [
      'class' => ActiveSelectColumn::className(),
      'attribute' => 'next_question_id',
      'header' => 'Next question',
      'fieldData' => $questionsList,
      'headerOptions' => ['class' => 'text-center'],
      'fieldOptions' => ['prompt' => '', 'class' => 'form-control'],
    ]
  ]
]); ?>