<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2 in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299737#M27493</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Martin,&lt;BR /&gt;&lt;BR /&gt;it looks like there are already &lt;A href="http://forums.arcgis.com/threads/95853-locate-button-will-not-find-location"&gt;plans&lt;/A&gt; for this to be included in a future release.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/driskull/arcgis-dijit-locate-button-js/blob/master/js/LocateButton.js#L286"&gt;https://github.com/driskull/arcgis-dijit-locate-button-js/blob/master/js/LocateButton.js#L286&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;John,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It looks like you replied to my thread with text that was meant for another thread...?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Feb 2014 18:42:26 GMT</pubDate>
    <dc:creator>DarrinBaldinelli</dc:creator>
    <dc:date>2014-02-12T18:42:26Z</dc:date>
    <item>
      <title>Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299733#M27489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We have a print widget in our Tax Parcel Viewer that contains 4 different layouts for printing reports from the application. Right now, I just don't know how to add more layout sizes (we need to add a "D" size 22x34 for printing). Here is a picture of what I'm talking about:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31179[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On the left side of the image is the drop down with the different options. I just need to be able to add one more (or possibly more in the future). After some research, I believe this has to do with modifying an .mxd file in ArcMap and possibly writing a Python script &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Advanced_printing_for_web_maps/01540000056t000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#/Advanced_printing_for_web_maps/01540000056t000000/&lt;/A&gt;&lt;SPAN&gt;), but I'm still not sure exactly where to get started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Report Layouts show up as JSON like so in our config.js file:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;ReportLayouts: [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DisplayText: "Letter Landscape",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value: "Letter ANSI A Landscape",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Selected: true
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DisplayText: "Letter Portrait",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value: "Letter ANSI A Portrait",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Selected: false
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DisplayText: "11x17 Landscape",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value: "Tabloid ANSI B Landscape",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Selected: false
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DisplayText: "11x17 Portrait",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value: "Tabloid ANSI B Portrait",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Selected: false
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just looking for some direction on where to go here. This forum has been really helpful. Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:22:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299733#M27489</guid>
      <dc:creator>DarrinBaldinelli</dc:creator>
      <dc:date>2021-12-11T14:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299734#M27490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi darrin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in order to accomplish this you would have to publish a custom print service in ArcGIS Server with your additional templates because the report templates in the app have to correspond with options actually exposed by the service itself.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31181[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is a link to an ArcGIS Server help article which describes the steps to publish an additional printing service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tutorial: Publishing additional services for printing&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/#/Tutorial_Publishing_additional_services_for_printing/0154000005n1000000/"&gt;http://resources.arcgis.com/en/help/main/10.2/#/Tutorial_Publishing_additional_services_for_printing/0154000005n1000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;once you have a print service up and running with this additional D size layout, you should be able to reference that url in your app and in your own ReportLayouts JSON successfully.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 14:41:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299734#M27490</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-02-06T14:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299735#M27491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;John,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply. Sorry it's taken me almost a week to get back to you on this thread...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, your post was helpful but I still have a question: how do I create a new layout template (D size for printing)? With the guide you linked, I am able to publish a service, but I still don't know how to create a new layout template. There are various templates to choose from now. I just need to know how to create a new one.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a screenshot of what I'm talking about:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31345[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you know of a similar guide on the ArcGIS resources website for what I need, please let me know. Thanks again!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 13:30:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299735#M27491</guid>
      <dc:creator>DarrinBaldinelli</dc:creator>
      <dc:date>2014-02-12T13:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299736#M27492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;it looks like there are already &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/95853-locate-button-will-not-find-location"&gt;plans&lt;/A&gt;&lt;SPAN&gt; for this to be included in a future release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/driskull/arcgis-dijit-locate-button-js/blob/master/js/LocateButton.js#L286"&gt;https://github.com/driskull/arcgis-dijit-locate-button-js/blob/master/js/LocateButton.js#L286&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 17:09:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299736#M27492</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-02-12T17:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299737#M27493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Martin,&lt;BR /&gt;&lt;BR /&gt;it looks like there are already &lt;A href="http://forums.arcgis.com/threads/95853-locate-button-will-not-find-location"&gt;plans&lt;/A&gt; for this to be included in a future release.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/driskull/arcgis-dijit-locate-button-js/blob/master/js/LocateButton.js#L286"&gt;https://github.com/driskull/arcgis-dijit-locate-button-js/blob/master/js/LocateButton.js#L286&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;John,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It looks like you replied to my thread with text that was meant for another thread...?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 18:42:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299737#M27493</guid>
      <dc:creator>DarrinBaldinelli</dc:creator>
      <dc:date>2014-02-12T18:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299738#M27494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;yeah, totally.&amp;nbsp; the dangers of a small mind attempting to multitask. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if you look inside the install folder for ArcGIS Server (on my machine C:\Program Files\ArcGIS\Server\Templates\ExportWebMapTemplates), you can see that there are pre-created MXDs for various page sizes and layouts.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You would have to create a new MXD and follow the instructions in the tutorial i linked to previously in order to get access to another template in a published service.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 18:47:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299738#M27494</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-02-12T18:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299739#M27495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Do you know I can determine what .mxd-containing folder a particular service is tied to?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, on our server, we have quite a few .mxd print templates stored in these folders:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;\\&amp;lt;servername&amp;gt;\c$\Program Files (x86)\ArcGIS\Desktop10.2\Templates\ExportWebMapTemplates&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;\\&amp;lt;servername&amp;gt;\c$\Program Files\ArcGIS\Server\Templates\ExportWebMapTemplates&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know how to open a service in ArcMap/ArcCatalog and look at/modify its properties, but I don't know how to determine how any particular service is tied to which folder.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 18:46:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299739#M27495</guid>
      <dc:creator>DarrinBaldinelli</dc:creator>
      <dc:date>2014-02-14T18:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Report Layouts for Printing - Tax Parcel Viewer 10.2</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299740#M27496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;i dont. sorry.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 19:32:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/modifying-report-layouts-for-printing-tax-parcel/m-p/299740#M27496</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-02-14T19:32:08Z</dc:date>
    </item>
  </channel>
</rss>

