这是按钮的代码,我想更改标签或换句话说标题标签内容。
'assignParent' => array(
'label' => 'Assign Parent',
'url' => '$data->parentId ? Yii::app()->controller->createUrl("updateParent", array("id" => $data->parentId)): Yii::app()->controller->createUrl("assignParent", array("imei" => $data->imei))',
'imageUrl' => Yii::app()->baseUrl . '/media/images/parent-btn.png',
'visible' => 'Yii::app()->user->checkAccess("oDeviceDeviceAssignParent") ? true : false',
'options' => array('style' => 'padding: 0px 3%'),
),
这是视图源代码,
<td class="button-column"><a href="/qelasysecurity_12/index.php/device/device/view/id/18" rel="tooltip" title="View" style="padding: 0px 3%"><i class="icon-eye-open"></i></a><a href="/qelasysecurity_12/index.php/device/device/update/id/18" rel="tooltip" title="Update" style="padding: 0px 3%"><i class="icon-pencil"></i></a><a href="/qelasysecurity_12/index.php/device/device/delete/id/18" rel="tooltip" title="Delete" class="delete" style="padding: 0px 3%"><i class="icon-trash"></i></a><a href="/qelasysecurity_12/index.php/device/device/updateParent/id/36" rel="tooltip" title="Assign Parent" style="padding: 0px 3%"><img alt="Assign Parent" src="/qelasysecurity_12/media/images/parent-btn.png"></a><a href="#" rel="tooltip" title="$data->parentId ? Assign Student : Update Student" style="padding: 0px 3%"><img alt="Assign Student" src="/qelasysecurity_12/media/images/student-btn.png"></a></td>
这就是确切部分的来源,
<a href="#" rel="tooltip" title="$data->parentId ? Assign Student : Update Student" style="padding: 0px 3%">
我想让这种逻辑改变标签名称
'options' => array('style' => 'padding: 0px 3%', 'title'=>'$data->parentId ? Assign Student : Update Student'),
$ data-&gt; parentId?分配学生:更新学生
有任何建议要做到这一点吗?
答案 0 :(得分:0)
我认为你不能直接这样做,但你可以使用属性cssClassExpression
来做到这一点在其中,您可以编写将被计算的有效PHP表达式。制作两个带有内容的css课程&#34;分配学生&#34;和其他人一起更新学生&#34;。你可以像使用它一样使用它
1.在名为checkStudent
的模型中编写一个函数,如左
public function checkStudent()
{
if($this->id)
{
return "class name"
}
else
{
return "class name"}
}
2.现在可以像使用
"cssClassExpression"=>'$data->checkStudent()'
现在出现了一个问题,即你如何使用Css类来正确使用内容。 Here很好地回答了这个问题。
答案 1 :(得分:0)
<?php
/**
* ButtonColumn class file.
* Extends {@link CButtonColumn}
*/
class ButtonColumn extends CButtonColumn
{
/**
* Renders a link button.
* @param string $id the ID of the button
* @param array $button the button configuration which may contain 'label', 'url', 'imageUrl' and 'options' elements.
* See {@link buttons} for more details.
* @param integer $row the row number (zero-based)
* @param mixed $data the data object associated with the row
*/
protected function renderButton($id,$button,$row,$data)
{
if (isset($button['visible']) && !$this->evaluateExpression($button['visible'],array('row'=>$row,'data'=>$data)))
return;
$label=isset($button['label']) ? $button['label'] : $id;
$url=isset($button['url']) ? $this->evaluateExpression($button['url'],array('data'=>$data,'row'=>$row)) : '#';
$options=isset($button['options']) ? $button['options'] : array();
if(!isset($options['title']))
$options['title']=$label;
// Start of modification
if( isset ( $button['evaluateLabel'] ) )
{
$label = $this->evaluateExpression($label,array('data'=>$data,'row'=>$row));
$label = $button['evaluateLabel'][$label];
unset($options['evaluateLabel']);
}
// END of modifications
if(isset($button['imageUrl']) && is_string($button['imageUrl']))
echo CHtml::link(CHtml::image($button['imageUrl'],$label),$url,$options);
else
echo CHtml::link($label,$url,$options);
}
}
注意修改行。这将检查一个新变量'evaluateLabel'。如果它退出,它将通过作为数组键解析'label'变量,以找到所需的新值。
我的新CGridView代码如下所示
$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'users-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
'username',
'email',
...
array(
'class' => 'ButtonColumn',
'template' => '{update} {delete} {switch}',
'buttons'=>array (
'delete'=>array(
'label'=>'$data->custom_variable',
'imageUrl'=>false,
'options'=>array( 'class'=>'cbutton delete' ),
'evaluateLabel' => array(0=>"Suspend",1=>"Reactivate"),
),
所以在我的情况下'$ data-&gt; custom_variable是一个与模型相关的变量,它始终是0或1.所以加载的文本将在evaluateLabel键中配对。
另请注意,该课程已从CButtonColumn更改为ButtonColumn
答案 2 :(得分:0)
您可以使用我的代码
'link'=>array(
'header'=>Yii::t('main', 'login'),
'type'=>'raw',
'value'=> 'CHtml::button($data->islogin==1?"可":"不可",array("onclick"=>"document.location.href=\'".Yii::app()->controller->createUrl("user/changelogin",array("id"=>$data->id))."\'", "class"=>"btn-link"))',
),