通过在yii2中使用javascript单击按钮来显示或隐藏任何表单

时间:2016-04-23 09:22:52

标签: php yii yii2 yii-extensions

单击Gridview按钮时如何显示表单?

基本上我想填充一个表单,其中包含下拉和提交按钮。

点击按钮我想在弹出框中填充表格。

'panel' => [
        'type' => 'info',
        'after' => Html::button('<i class="glyphicon glyphicon-plus"></i>&nbsp;Allocate', [ 'id' => 'modalButton', 'class' => 'btn btn-success'),
        'showFooter' => false,

1 个答案:

答案 0 :(得分:0)

使用以下代码并解决了我的问题。

 $this->registerJs("$(function() {
       $('#popupModal').click(function(e) {
         e.preventDefault();
         $('#modal').modal('show').find('.modal-content')
         .load($(this).attr('href'));
       });
    });");