Question
3
Replies
548
Views
Posted: June 8, 2019
Last activity: December 17, 2019
MultiSelect on Report Viewer as filter condition is not visible
HI ,
I have a requirement to custom filter list on report viewer , multi select control is not editable on the report viewer.
when I reffered same control on perform harness it is visible but it is not visible on report to filter the list.
Suggest me on this.
Hi Johnny,
This is expected as multi-select is not supported in non-template mode.
You can try below work around to implement your requirement:
1.create a TestUpperSection wrapper section, and make it non-auto(i.e in HTML tab uncheck Auto-generated HTML checkbox)
2. add below code
<%
pzAuto.getUIComponentRuntime().resetTemplatingUIStatus('Y');
%>
<pega:include name="TestSection" type="Rule-HTML-Section"/> //TestSection contains multiselect control for custom filtering
3. save the rule.
4. Goto report definition -> Report Viewer Tab,
5. in Display custom section inline area , for Name change the name to wrapper section i.e change TestSection to TestUpperSection
Hope it helps.
Thanks.