I have a custom field that I want to put inside a DIV tag. How do I go about that? I figure I need to add a customCode section to that field's definitions under editviewdefs.php, right? Here's my field definition so far:
5 => array (
0 => array (
'name' => 'case_id_c',
'label' => 'LBL_CASE_ID',
),
),
I tried something like this but with no luck:
5 => array (
0 => array (
'name' => 'case_id_c',
'label' => 'LBL_CASE_ID',
'customCode' => '<div id = \'TESTINGTESTING\'>{$fields.case_id_c}</div>',
),
),