onunix 2012-09-13 15:00:44 3861次浏览 9条回复 0 0 0

这种写法不对,

array
(
    'class'=>'CButtonColumn',
    'template'=>'{email}{down}{delete}',
    'buttons'=>array
    (
        'email' => array
        (
            'label'=>'Send an e-mail to this user',
            'imageUrl'=>Yii::app()->request->baseUrl.'/images/email.png',
            'url'=>'<a href="http://172.30.1.1/Yii/applicationdemo/index.php">Link Text</a>',
        ),
        
    ),
),

换成

array
(
    'class'=>'CButtonColumn',
    'template'=>'{email}{down}{delete}',
    'buttons'=>array
    (
        'email' => array
        (
            'label'=>'Send an e-mail to this user',
            'imageUrl'=>Yii::app()->request->baseUrl.'/images/email.png',
            'url'=>'http://172.30.1.1/Yii/applicationdemo/index.php),
        
    ),
),

也不对

因为我这是一个外部网址,不是Yii生成的,外部网址能用createurl吗?如果无法用,那这个地方要怎么写呢?

您需要登录后才可以回复。登录 | 立即注册