<?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: Autoload combobox in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820524#M2822</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ComboBox class is created only when it gets visible. This is by design.&amp;nbsp; The Combobox contents can be initialized in the Module Class. You can then access this in your ComboBox class by referencing it from the Module. module1.Current.ComboBoxItems...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jun 2019 23:05:03 GMT</pubDate>
    <dc:creator>UmaHarano</dc:creator>
    <dc:date>2019-06-05T23:05:03Z</dc:date>
    <item>
      <title>Autoload combobox</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820521#M2819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to load combobox defined in Config.daml automatically on ArcGIS Pro start? Something like &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;loadOnClick="false"&lt;/SPAN&gt; for button. I want to load combobox without&amp;nbsp;necessity to go to add-in tab. I need it to have combobox view model&amp;nbsp;created when add-in initialized.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jun 2019 16:55:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820521#M2819</guid>
      <dc:creator>MaxMax2</dc:creator>
      <dc:date>2019-06-04T16:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Autoload combobox</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820522#M2820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can set the&amp;nbsp;"autoload" attribute for the "insertModule" element in the Config.daml to true in your add-in. This will load your add-in as soon as Pro opens up.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;...
&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;modules&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
 &lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;insertModule&lt;/SPAN&gt; &lt;SPAN class="attr-name token"&gt;id&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="punctuation token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;Pro_AddIn_Module&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="attr-name token"&gt;className&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="punctuation token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;Module1&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="attr-name token"&gt;autoLoad&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="punctuation token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;true&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="attr-name token"&gt;caption&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="punctuation token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;Module1&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
...&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:43:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820522#M2820</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2021-12-12T09:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Autoload combobox</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820523#M2821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, that doesn't work. ComboBox view model is not created until add-in tab opened in ribbon. Seems like a bug.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2019 22:25:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820523#M2821</guid>
      <dc:creator>MaxMax2</dc:creator>
      <dc:date>2019-06-05T22:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Autoload combobox</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820524#M2822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ComboBox class is created only when it gets visible. This is by design.&amp;nbsp; The Combobox contents can be initialized in the Module Class. You can then access this in your ComboBox class by referencing it from the Module. module1.Current.ComboBoxItems...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2019 23:05:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/820524#M2822</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2019-06-05T23:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Autoload combobox</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/1049652#M6472</link>
      <description>&lt;P&gt;How do you actually reference the combobox in module1? Can you provide an example. I am trying to do the same only with a prowindow.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 16:27:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/autoload-combobox/m-p/1049652#M6472</guid>
      <dc:creator>JamalWest2</dc:creator>
      <dc:date>2021-04-21T16:27:55Z</dc:date>
    </item>
  </channel>
</rss>

