In Java code it can be done like that:
Map m = new HashMap();
m.put(PD4Constants.PD4ML_PRINT_DIALOG_POPUP, "true");
pd4ml.setDynamicParams(m);
Unfortunately there is still no JSP taglib mapping for the method. Please check if your JSP environments allows to locate
<pd4ml:transform> tag instance:
<%
org.zefer.pd4ml.taglib.PD4MLTransformerTag trt = (org.zefer.pd4ml.taglib.PD4MLTransformerTag)
pageContext.getAttribute( "pd4ml.transformer.tag", javax.servlet.jsp.PageContext.REQUEST_SCOPE );
if ( trt != null ) {
System.out.println("found");
}
%>If it works you'll be able to pass the dynamic params map to it
trt.setDynamicParams(m);with the forthcoming PD4ML beta (v360b2).
The missing mapping custom tags (
<pd4ml:params>,
<pd4ml:key>,
<pd4ml:value>) for the method will be available with the final release v360.