<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>1) Is there anyway i can provide a print functionality in user Input Task so tha</title><link>https://community.appian.com/discussions/f/user-interface/1439/1-is-there-anyway-i-can-provide-a-print-functionality-in-user-input-task-so-tha</link><description>1) Is there anyway i can provide a print functionality in user Input Task so that the current UI or form can be printed? 2) How can i print the multiple documents.Scenario is like we are showing the multiple documents information in a paging grid.User</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: 1) Is there anyway i can provide a print functionality in user Input Task so tha</title><link>https://community.appian.com/thread/69036?ContentTypeID=1</link><pubDate>Wed, 28 Aug 2019 06:01:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:91e5fda4-a221-46d2-8e01-b8bf21daf5da</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I agree to Christine. With SAIl this is not option anymore. But, in case your companies printing infrastructure has any modern interfaces, maybe there is a web service available where you could send a user selected document for printing.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 1) Is there anyway i can provide a print functionality in user Input Task so tha</title><link>https://community.appian.com/thread/69025?ContentTypeID=1</link><pubDate>Tue, 27 Aug 2019 16:00:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:65b2e3f5-81c0-45e9-9061-72862f74ee82</guid><dc:creator>ChristineLHutchison</dc:creator><description>&lt;p&gt;Based on the date, I believe this post is in reference to the pre-Tempo version of Appian when it was more of a portal and you could apply javascript, Since SAIL was introduced, I am not aware of a way to do this in this manner.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 1) Is there anyway i can provide a print functionality in user Input Task so tha</title><link>https://community.appian.com/thread/69024?ContentTypeID=1</link><pubDate>Tue, 27 Aug 2019 15:38:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:68c39d47-7f6d-4e49-b7db-fb8072c495c7</guid><dc:creator>maurizio</dc:creator><description>&lt;p&gt;Hi Eduardo, I&amp;#39;m new to Appian and I found your applciation with window.print()&lt;br /&gt;I&amp;#39;m in trouble to apply it to my application, can you please give me an hand?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 1) Is there anyway i can provide a print functionality in user Input Task so tha</title><link>https://community.appian.com/thread/5056?ContentTypeID=1</link><pubDate>Thu, 31 Oct 2013 16:10:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0a2ec3d3-f063-4c54-9ff6-bd8b549248bf</guid><dc:creator>himanshug</dc:creator><description>Thanks a lot.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 1) Is there anyway i can provide a print functionality in user Input Task so tha</title><link>https://community.appian.com/thread/5038?ContentTypeID=1</link><pubDate>Thu, 31 Oct 2013 02:40:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:927080b9-d6ba-4c9d-a778-35b39e215d73</guid><dc:creator>Eduardo Fuentes</dc:creator><description>Just to expand a little bit more on what Stefan mentions on point #1 I created an example a while ago available for download here: &lt;a href="https://forum.appian.com/suite/doc/15487"&gt;forum.appian.com/.../15487&lt;/a&gt; &lt;br /&gt;The model is called Print Form under Process Models - Forum and the JS is called printFunctionality.js under Default Community &amp;gt; Temporary Documents Knowledge Center &amp;gt; Temporary Documents&amp;gt;JS libraries&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here is the explanation: You can window.print() to print the form. I can think of two approaches. One would be to add that JS to an image (using the image component) and the other one is adding it to a button.&lt;br /&gt;&lt;br /&gt;My suggestion would be to use the first approach; the image. You can achieve this effect by using the following function:&lt;br /&gt;&lt;br /&gt;function addPrintFunctionalityToImage(imageId){&lt;br /&gt;var originalHTML = $(&amp;quot;#fd_component_&amp;quot;+ window.FormDesigner.runtimeNamespace+ imageId +&amp;quot; div.fields&amp;quot;).html();&lt;br /&gt;var newHTML = &amp;quot;&amp;lt;a href=&amp;#39;#&amp;#39;&amp;gt;&amp;quot; + originalHTML + &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;$(&amp;quot;#fd_component_&amp;quot;+ window.FormDesigner.runtimeNamespace+ imageId +&amp;quot; div.fields&amp;quot;).html(newHTML)&lt;br /&gt;$(&amp;quot;#fd_component_&amp;quot;+ window.FormDesigner.runtimeNamespace+ imageId +&amp;quot; img&amp;quot;).click(function(){window.print();});&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Let me explain what we&amp;#39;re doing here. This logic is to add the window.print() to the click event of the image but also to add an empty link in order to display the cursos as if this image was a link (little hand). I am using JQuery (already used by Appian, so no need to deploy anything extra) to retrieve the original HTML of the div where the image is rendered and I just enclose it in an empty link, then I add the JS to click event of the image.&lt;br /&gt;&lt;br /&gt;For the second approach the drawback is that the button will show the print window but after the form is printed it will submit the form, which is expected because buttons are submit buttons all the time.&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t mind submitting the form after printing it this function adds that to the button:&lt;br /&gt;&lt;br /&gt;function addPrintFunctionalityToButton(buttonId){&lt;br /&gt;var buttonConfig = window.Build.util.getComponentContainer(buttonId,window.FormDesigner.runtimeNamespace);&lt;br /&gt;var clickFunction = function(){window.print();};&lt;br /&gt;buttonConfig[0].firstChild.onclick = clickFunction;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;For any of these functions you have to call them in the load event of your form sending either the image id or button (from the forms designer)&lt;br /&gt;&lt;br /&gt;-Eduardo&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: 1) Is there anyway i can provide a print functionality in user Input Task so tha</title><link>https://community.appian.com/thread/5009?ContentTypeID=1</link><pubDate>Wed, 30 Oct 2013 10:57:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bb7e773f-a25e-41ab-a453-067de79be857</guid><dc:creator>shelzle</dc:creator><description>1: Using JavaScript (window.print()) you can tell the browser to print the page. This is the same as when the user types CTRL+P. The printed result depends on some browser settings. Keep an eye on these settings.&lt;br /&gt;&lt;br /&gt;2: Documents can not be directly printed OOTB. However it should be possible to build a plugin that does printing on the server side. For client side printing you need to give the user a list of document links. The user needs to click on each link, open the document and print it out of the application (Word, Excel, Acrobat etc.)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>