有什么方法可以在 Yii 中创建带有引导图标的 ajaxButton?
问问题
695 次
1 回答
1
我在这里找到了答案
$this->widget('bootstrap.widgets.TbButton', array(
'buttonType' => 'ajaxButton',
'label' => 'Label Here',
'type' => 'danger',
'icon' => 'play white',
...
'ajaxOptions' => array(
'success' => '...',
'error' => '...',
'beforeSend' => '...',
)
));
于 2013-06-10T16:08:51.440 回答