由Yii创建的ajaxButton中的Bootstrap图标

时间:2013-06-10 15:58:43

标签: twitter-bootstrap yii

有没有办法在Yii中用bootstrap图标创建ajaxButton?

1 个答案:

答案 0 :(得分:1)

我找到了答案here

    $this->widget('bootstrap.widgets.TbButton', array(
                 'buttonType' => 'ajaxButton',
                 'label' => 'Label Here',
                 'type' => 'danger',
                 'icon' => 'play white',
                 ...
                 'ajaxOptions' => array(
                     'success' => '...',
                     'error' => '...',
                     'beforeSend' => '...',
                 )
             ));