Hi,
I have trouble to display a simple custom footer, it is not displayed at all.
I have a custom module called “subs_subs” in witch I would like to add a custom footer in its DetailView.
I modified detailviewdefs.php by adding the footerTpl:
$module_name = 'subs_subs';
$viewdefs[$module_name]['DetailView'] = array(
'templateMeta' => array(
'form' => array(
'buttons' => array(
'EDIT',
'DUPLICATE',
'DELETE',
'FIND_DUPLICATES',),
'footerTpl'=>'modules/subs_subs/tpls/DetailViewFooter.tpl',
),
'maxColumns' => '2',
'widths' => array(
array('label' => '10', 'field' => '30'),
array('label' => '10', 'field' => '30')
),
),
...
My DetailViewFooter.tpl is very simple:
<div class="edit view">
<p>Hello! foobar!</p>
</div>
…
I’m on SuiteCRM 7.9.0, in developer mode. I have clear the cache and cookies and everything, The suitecrm.log and php.log don’t log any error. SuiteCRM simply doesn’t want to display my “Hello! foobar!”
Thanks for your help,
B.H