/** * Lists all Poitem models. * @return mixed */ public function actionIndex() { $searchModel = new PoitemSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]); }
$this->title = 'Pos'; $this->params['breadcrumbs'][] = $this->title; ?> <div class="po-index"> <h1><?php echo Html::encode($this->title); ?> </h1> <?php // echo $this->render('_search', ['model' => $searchModel]); ?> <p> <?php echo Html::a('Create Po', ['create'], ['class' => 'btn btn-success']); ?> </p> <?php echo GridView::widget(['dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'export' => false, 'perfectScrollbar' => true, 'columns' => [['class' => 'kartik\\grid\\ExpandRowColumn', 'value' => function ($model, $key, $index, $column) { return GridView::ROW_COLLAPSED; }, 'detail' => function ($model, $key, $index, $column) { $searchModel = new PoitemSearch(); $searchModel->po_id = $model->id; $dataProvider = $searchModel->search(Yii::$app->request->queryParams); return Yii::$app->controller->renderPartial('_poitems', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]); }], 'po_no', 'description:ntext', ['class' => 'yii\\grid\\ActionColumn']]]); ?> </div>