良い1日を。ブートストラップモーダルでURLを変更するにはどうすればよいですか? yii ブートストラップ拡張機能で確認ダイアログを作成しています。アクション URL が異なるボタンのリストがあります。
ボタンコード
foreach ($Users as $a)
{
$this->widget('bootstrap.widgets.TbButton', array(
'label'=>Yii::t('default-ui', 'Remove'),
'type'=>'action',
'icon'=>'trash',
'size'=>'mini',
'htmlOptions'=>array(
'data-toggle'=>'modal',
'data-target'=>'#myModal',
)));
};
モーダル フォーム コード:
<?php $this->beginWidget('bootstrap.widgets.TbModal', array('id'=>'myModal')); ?>
<div class="modal-header">
<a class="close" data-dismiss="modal">×</a>
<h4>Removing user</h4>
</div>
<div class="modal-body">
<p>You really want remove this user?</p>
</div>
<div class="modal-footer">
<?php
$this->widget('bootstrap.widgets.TbButton', array(
'type'=>'inverse',
'label'=>'Cancel',
'url'=>'#',
'htmlOptions'=>array('data-dismiss'=>'modal'),
));
$this->widget('bootstrap.widgets.TbButton', array(
'type'=>'danger',
'label'=>'Yes, remove',
//'url'=>Yii::app()->createUrl('users/remove', array('id'=>$a['id'])), // here should be dynamic link for removing profile
));
?>
</div>
<?php $this->endWidget(); ?>