
Originally Posted by
DragonflyMaster
In the first post of this thread you said you create a dropdown from a user defined query. Why don't you use that query?
I don't know if you could resolve this issue, but I recently have the same problem. What I did was to change some line at zucker report module.
At modules/ZuckerReportParameter/ParameterFill.html you have this lines:
HTML Code:
<!-- BEGIN: SQL -->
<tr>
<td width="15%" class="tabDetailViewDL">{PARAM_FRIENDLY_NAME}</td>
<td width="85%" class="tabDetailViewDF" colspan="3"><select name="{PARAM_NAME}">{PARAM_SELECTION}</select></td>
</tr>
<!-- END: SQL -->
What i did was to add "multiple" at the select html tag. So what I have now is:
HTML Code:
<!-- BEGIN: SQL -->
<tr>
<td width="15%" class="tabDetailViewDL">{PARAM_FRIENDLY_NAME}</td>
<td width="85%" class="tabDetailViewDF" colspan="3"><select name="{PARAM_NAME}" multiple>{PARAM_SELECTION}</select></td>
</tr>
<!-- END: SQL --> That' s all.
Bookmarks