phpで新しく、yii2をWeb開発の基礎として使用してください。このコードを単純化するのを手伝ってください。ポップアップActionColumnボタンに表示しようとしています。表示、更新、および削除ボタン。両方のボタンの追加ここに私のコードyii2繰り返しコードインデックスを簡略化する方法ph
'class' => 'yii\grid\ActionColumn',
'buttons'=>[
'view'=>function($url,$model){
return Html::a('<span class="glyphicon glyphicon-eye-open")></span>',$url,['class'=>'view', 'data-pjax'=>0]);
},
'update'=>function($url,$model){
return Html::a('<span class="glyphicon glyphicon-pencil")></span>',$url,['class'=>'update', 'data-pjax'=>0]);
}
],
],
],
]);
$this->registerJs(
"$(document).on('ready pjax:success', function() { // 'pjax:success' use if you have used pjax
$('.view').click(function(e){
e.preventDefault();
$('#pModal').modal('show')
.find('#modalContent')
.load($(this).attr('href'));
});
});
");
Modal::begin([
//'header'=>'<span id="modalHeaderTitle"></span>',
//'headerOptions'=>['id'=>'modalHeader'],
'id'=>'pModal',
'size'=>'modal-lg',
//keeps from closing modal with esc key or by clicking out of the modal.
// user must click cancel or X to close
'clientOptions' => ['backdrop' => 'static', 'keyboard' => FALSE]
]);
echo "<div id='modalContent'></div>";
Modal::end();
$this->registerJs(
"$(document).on('ready pjax:success', function() { // 'pjax:success' use if you have used pjax
$('.update').click(function(e){
e.preventDefault();
$('#qModal').modal('show')
.find('#modalContent')
.load($(this).attr('href'));
});
});
");
Modal::begin([
//'header'=>'<span id="modalHeaderTitle"></span>',
//'headerOptions'=>['id'=>'modalHeader'],
'id'=>'qModal',
'size'=>'modal-lg',
//keeps from closing modal with esc key or by clicking out of the modal.
// user must click cancel or X to close
'clientOptions' => ['backdrop' => 'static', 'keyboard' => FALSE]
]);
echo "<div id='modalContent'></div>";
Modal::end()
?>
が
あなたが実際に欲しいですか?単一のjsを呼び出す場合は、両方のボタンで同じクラスを追加するだけです。 'activebtn'のようにして、それに関してjsを呼び出します。しかし、あなたは 'Modal'コンテンツで何を見せたいのですか? –
私は2つのモーダルpModalとqModalに対して2つのインラインjsを持っています。ビューに適したスクリプトを作成し、モーダルを更新するにはどうすればよいですか。 –
私のコメントは申し訳ありません。私は、iveが2つのモーダルに対して1つのjsを持つことを頑張ったので、それを考えました。このインラインスクリプトからjsファイルを作成することは安全でしょうか。どのように私のデザインでこの外部ファイルを呼び出すことができます –