I am developing an application based on WAB. Since I have some services with complicated legend I made the legend widget to reference to a pre made images for legend.
I have my own print template with Title, Author, copyright and legend elements. I am working to include these images in the place of the legend element or any other element so that the map got an appropriate legend element in the printout.
If you see the PrintTemplate() object we have access to these layout elements in the LayoutOptions object as properties.
<SPAN class="comment token">// this script is a piece from the print.js </SPAN>
template<SPAN class="punctuation token">.</SPAN>layoutOptions <SPAN class="operator token">=</SPAN> <SPAN class="punctuation token">{</SPAN>
authorText<SPAN class="punctuation token">:</SPAN> hasAuthorText <SPAN class="operator token">?</SPAN> form<SPAN class="punctuation token">.</SPAN>author <SPAN class="punctuation token">:</SPAN> <SPAN class="string token">""</SPAN><SPAN class="punctuation token">,</SPAN>
copyrightText<SPAN class="punctuation token">:</SPAN> hasCopyrightText <SPAN class="operator token">?</SPAN> <SPAN class="punctuation token">(</SPAN>form<SPAN class="punctuation token">.</SPAN>copyright <SPAN class="operator token">||</SPAN> <SPAN class="keyword token">this</SPAN><SPAN class="punctuation token">.</SPAN><SPAN class="token function">_getMapAttribution</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN> <SPAN class="punctuation token">:</SPAN> <SPAN class="string token">""</SPAN><SPAN class="punctuation token">,</SPAN>
legendLayers<SPAN class="punctuation token">:</SPAN> <SPAN class="keyword token">this</SPAN><SPAN class="punctuation token">.</SPAN><SPAN class="token function">_getLegendLayers</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="comment token">// fix issue 7744</SPAN>
titleText<SPAN class="punctuation token">:</SPAN> hasTitleText