Hey guys,
Is it possible to display HTML content in $summary_fields?
static $summary_fields = array(
'Title' => 'Title,
'myHTMLString' => 'HTML String'
);
public function myHTMLString(){
return "Lorum ipsum <table><tr><td>Blabla</td></tr></table>";
}
If I do it that way, I get the HTML elements back as string.