单击Gridview按钮时如何显示表单?
基本上我想填充一个表单,其中包含下拉和提交按钮。
点击按钮我想在弹出框中填充表格。
'panel' => [
'type' => 'info',
'after' => Html::button('<i class="glyphicon glyphicon-plus"></i> Allocate', [ 'id' => 'modalButton', 'class' => 'btn btn-success'),
'showFooter' => false,
答案 0 :(得分:0)
使用以下代码并解决了我的问题。
$this->registerJs("$(function() {
$('#popupModal').click(function(e) {
e.preventDefault();
$('#modal').modal('show').find('.modal-content')
.load($(this).attr('href'));
});
});");