vsk/modal-form Modal form widget for Yii2

modalForm for Yii2

  1. Installation
  2. Usage

Installation

The preferred way to install this extension is through composer.

Either run

composer require vsk/modal-form

or add

"vsk/modal-form" : "~1.0.0"

to the require section of your application's composer.json file.

Usage

Edit modal example

Include in controller

class TestController extends Controller
{

    public function actions()
    {
        return [
            'modal-form' => [
                'class' => ModalFormAction::class,
                'getBody' => function ($action) {
                    return $this->render('@vendor/vsk/modal-form/src/test/views/modal-list');
                },
                'getTitle' => function() {
                    return 'Список тестовых данных';
                },
            ],
            'modal-form-update' => [
                'class' => ModalFormAction::class,
                'getBody' => function ($action) {
                    return $this->render('@vendor/vsk/modal-form/src/test/views/update', [
                        'model' => $action->getModel(),
                    ]);
                },
                'getTitle' => function() {
                    return 'title';
                },
                'getModel' => function () {
                    $id = \Yii::$app->request->get('id');
                    return Test::findOne($id);
                },
                'submitForm' => function ($action) {
                    $model = $action->getModel();
                    $model->load(\Yii::$app->request->post());
                    return $model->save();
                }
            ],
        ];
    }
}

Include in you view

<?php

echo \vsk\modalForm\ModalFormWidget::widget([
                     'template' => function ($widget) {
                         $id = $widget->getId();
                         return "<button id='{$id}' data-modal-url='/adminx24/test/modal-form'>TEST</button>";
                     }
                 ]);

1 0
1 follower
1 245 downloads
Yii Version: 2.0
License: BSD-3-Clause
Category: User Interface
Developed by: vetal06
Created on: Sep 26, 2018
Last updated: (not set)
Packagist Profile
Github Repository

Related Extensions