hi,
here is my sample proc:
select 'dbr.search', 0;
select 'dbr.collapse', 'body','footer';
select 'dbr.rowstyle', 'rowstyle';
select 'dbr.collapse.template', 'Test' ;
select 'dbr.hidecolumn', 'rowstyle';
select 'xxx@gmail.com' AS email, 'Eugene' as destination, 'blah' as body, 'foo' as footer, mydbr_style('collapse_open') as rowstyle;
And here is my sample template:
<table width="200" border="1" cellpadding="5">
<tr>
<td>Body: {#body}</td>
<td>Footer: {#footer}</td>
</tr>
<table>
Template works perfectly, but my row by default is not expanded.
I have updated to the latest version 5.2.3 build 3709
I have also tried to define collapse_open css class but when I open my test report my row is still in collapsed state, not in expeanded one.
What I am doing wrong?