<?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: Web App Builder Developer Edition: Customize Geo Processing Widget in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791587#M4193</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using the Web App Builder Developer Edition? It sounds like you are using the online version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Jul 2019 15:37:30 GMT</pubDate>
    <dc:creator>JamalWest2</dc:creator>
    <dc:date>2019-07-15T15:37:30Z</dc:date>
    <item>
      <title>Web App Builder Developer Edition: Customize Geo Processing Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791584#M4190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I Customized the geo processing widget?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i show a working widget on the my development section under the SimpleWidget folder?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Side Note: I have created a GP Service which is currently consumed by Geo processing widget that is out of the box, but i need to modify the structure of how the parameters(fields) show up in the widget. Also in need to set a particular size on the widget when the user clicks to open it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2019 19:06:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791584#M4190</guid>
      <dc:creator>NateBanda</dc:creator>
      <dc:date>2019-05-31T19:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Web App Builder Developer Edition: Customize Geo Processing Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791585#M4191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean you want to set values for your parameters when you open the widget? If so then I used code like this in the onOpen function of mine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;var DT0 = document.getElementById("dijit_form_TextBox_0");&lt;BR /&gt; var DT1 = document.getElementById("dijit_form_TextBox_1");&lt;BR /&gt; var DT2 = document.getElementById("dijit_form_TextBox_2");&lt;BR /&gt; var DT3 = document.getElementById("dijit_form_TextBox_3");&lt;BR /&gt; var DT5 = document.getElementById("dijit_form_TextBox_5");&lt;BR /&gt; var DT6= document.getElementById("dijit_form_TextBox_6");&lt;BR /&gt; var DT7 = document.getElementById("dijit_form_TextBox_7");&lt;BR /&gt; var DT8 = document.getElementById("dijit_form_TextBox_8");&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; DT0.value = this.map.extent.xmin &lt;BR /&gt; DT1.value = this.map.extent.ymin;&lt;BR /&gt; DT2.value = this.map.extent.xmax;&lt;BR /&gt; DT3.value = this.map.extent.ymax;&lt;BR /&gt; if (DT5){&lt;BR /&gt; DT5.value = this.map.extent.xmin;&lt;BR /&gt; }&lt;BR /&gt; if (DT6){&lt;BR /&gt; DT6.value = this.map.extent.ymin;&lt;BR /&gt; }&lt;BR /&gt; if (DT7){&lt;BR /&gt; DT7.value = this.map.extent.xmax;&lt;BR /&gt; }&lt;BR /&gt; if (DT8){&lt;BR /&gt; DT8.value = this.map.extent.ymax;&lt;BR /&gt; }&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can change how the fields order/display in the widget edit mode. If you want to change the size of widget and it is opening in a panel you can use something along these lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;var panel = this.getPanel();&lt;BR /&gt; //panel.position.width = 400;&lt;BR /&gt; panel.position.height= 600;&lt;BR /&gt; //panel.position.left=1100;&lt;BR /&gt; //panel.position.top=0;&lt;BR /&gt; panel.setPosition(panel.position);&lt;BR /&gt; panel.panelManager.normalizePanel(panel);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2019 21:42:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791585#M4191</guid>
      <dc:creator>JamalWest2</dc:creator>
      <dc:date>2019-06-05T21:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Web App Builder Developer Edition: Customize Geo Processing Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791586#M4192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jamal, Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I was wondering how to make those changes, since the out of the box code you see on the widgets seems to be like spaghetti code and hard to follow. But I managed to make the changes on the sizes of the text boxes and stuff.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2019 15:24:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791586#M4192</guid>
      <dc:creator>NateBanda</dc:creator>
      <dc:date>2019-07-15T15:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Web App Builder Developer Edition: Customize Geo Processing Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791587#M4193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using the Web App Builder Developer Edition? It sounds like you are using the online version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2019 15:37:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/web-app-builder-developer-edition-customize-geo/m-p/791587#M4193</guid>
      <dc:creator>JamalWest2</dc:creator>
      <dc:date>2019-07-15T15:37:30Z</dc:date>
    </item>
  </channel>
</rss>

