21287 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 115 Views |
-
Show icon in Admin for boolean

18 January 2013 at 4:20am Last edited: 18 January 2013 4:21am
How can i show "a Tick" or "a Cross" for a boolean value in model admin?
details
I have a boolean on a dataobjectWhen i show this in model admin
it intially showed up as 0 or 1I've got to to say True or False instead
what i would like is an image instead.
However it actually prints out the html so i end up seeing
<span class="somestyle">True</span>
public static $db = array(
'ShowIcon' => 'Boolean',public static $summary_fields = array(
'ShowIconNice' => 'Active',
'Title' => 'Title',
'FooticonThumbnail' => 'Thumbnail'
);public function ShowIconNice(){
$trueorfalse ="nope";
//get value of boolean
$tfVALUE = $this->ShowIcon;
//set result
$trueorfalse = $tfVALUE;if($trueorfalse == 1){
$trueorfalse = '<span class="somestyle">True</span>';
} else {
$trueorfalse = "False";
}return $trueorfalse;
}[\code]
-
Re: Show icon in Admin for boolean

18 January 2013 at 4:55am
Have you tried $casting the value to Text or Varchar?
| 115 Views | ||
|
Page:
1
|
Go to Top |


