My (shortened) Code:
class PhoneMap implements GridIValueMap
{ function mapValue($value, $column)
{ if ($column == "type")
{ switch($value)
{ case 1:
$value = "<img src=\"picts/Callin.png\" />";
break;
default:
break;
}
}
return $value;
}
function inverseMapValue($value, $column)
{ return $value;
}
}
Thanks for Your help!