2

我遇到了一个小任务,我正在尝试将我在 YII 中编写的链接转换为 yii.bootstrap 按钮,但收效甚微。我在引导页面上的文档中寻找解决方案,但没有结果,所以我希望这里有人能指出我正确的方向。

所以链接的代码如下:

<?php echo CHtml::link(
        'delete', 
        '#', 
        array(
            'submit'=>'', 
            'params'=>array(
                'Price[command]'=>'delete', 
                'Price[id]'=>$id, 
                'noValidate'=>true)
            ));?>

yiibotstrap 按钮的代码如下:

 <?php $this->widget('bootstrap.widgets.BootButton', array(
            'buttonType'=>'submit', 
            'type'=>'primary', 
            'icon'=>'ok white',
            'label'=>'Submit',
            // '', 'large', 'small' or 'mini'
)); ?>

顺便说一下,在 YII 中进行 iam 编程(php 框架)

4

1 回答 1

1

试试这个。

<?php $this->widget('bootstrap.widgets.BootButton', array(
            'buttonType'=>'submitLink', 
            'type'=>'primary', 
            'icon'=>'ok white',
            'label'=>'Submit',
            'htmlOptions'=>array(
              'submit'=>'', 
              'params'=>array(
                'Price[command]'=>'delete', 
                'Price[id]'=>$id, 
                'noValidate'=>true)
            ),
)); ?>
于 2012-07-05T14:40:05.070 回答