Exemple #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Grupo::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['idGrupo' => $this->idGrupo, 'idDocente' => $this->idDocente, 'idAsignatura' => $this->idAsignatura, 'idPlan' => $this->idPlan]);
     return $dataProvider;
 }
Exemple #2
0
                              <button type="button" class="remove-item btn btn-danger btn-xs"><i class="glyphicon glyphicon-minus"></i></button>
                          </div>
                          <div class="clearfix"></div>
                      </div>
                      <div class="panel-body">
                          <?php 
    // necessary for update action.
    if (!$modeldetallemat->isNewRecord) {
        echo Html::activeHiddenInput($modeldetallemat, "[{$i}]id");
    }
    ?>
                          <div class="row">
                              <div class="col-sm-6">

                                <?php 
    echo $form->field($modeldetallemat, "[{$i}]idGrupo")->dropDownList(ArrayHelper::map(Grupo::find()->all(), 'idGrupo', 'idAsignatura'), ['prompt' => 'Selecciona grupo']);
    ?>

                                <?php 
    echo $form->field($modeldetallemat, "[{$i}]idTipoa")->dropDownList(ArrayHelper::map(TipoAp::find()->all(), 'idTipoa', 'descripcion'), ['prompt' => 'Tipo de aprobación']);
    ?>

                                <?php 
    echo $form->field($modeldetallemat, "[{$i}]nota")->textInput(['maxlength' => true]);
    ?>

                              </div>
                          </div>
                      </div>
                  </div>
              <?php