asp.Netgridviewカスタムvalue値のコード

798 ワード

モデル:
 
  
public function item($items,$name){
$returnValue='';
foreach($items as $n=>$item){
if(isset($this->$name)){
if($n==$this->$name){
$returnValue=$item;
}
}
}
return $returnValue;
}

viewでは:
 
  
array('name'=>'isPass','value'=>'$data->item(array(\'1\'=>\' \',\'0\'=>\' \'),\'isProcess\')','filter'=>array('1'=>' ','0'=>' ')),

もっと簡単に
 
  
'value'=> '$data->ispass == "1" ? " " : " "',