<?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: Question on how to use dijit/form/select in Arc JS API in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87572#M7931</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to push it to searchFields not findParams... small typo &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 May 2015 14:54:38 GMT</pubDate>
    <dc:creator>thejuskambi</dc:creator>
    <dc:date>2015-05-29T14:54:38Z</dc:date>
    <item>
      <title>Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87569#M7928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm brand new to javascript, dojo and HTML and I've searched everywhere for examples of this and cannot find any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a map with some feature points and a find task to highlight the feature points on the map, and display them in a grid with it's field attributes. This works great when I specify the search field as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;findParams.searchFields = ["LOCATION"];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if I add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;findParams.searchFields = ["LOCATION", "MODEL_NUM"];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The grid displays results from multiple fields (ie. searching for attributes in LOCATION "A" would also find attributes in MODEL_NUM containing the letter "A"). So I decided to add a drop down menu select to specify which field to search in (one at a time) so the results are more precise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I added the following dijit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;select id="fieldSelect" data-dojo-type="dijit/form/Select" name="fieldSelect"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="" selected="selected"&amp;gt;Select a field&amp;lt;/option&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="MODEL_NUM"&amp;gt;Model Number&amp;lt;/option&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="LOCATION"&amp;gt;Location&amp;lt;/option&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="NUM_DEFICIENCIES"&amp;gt;Number of Deficiencies&amp;lt;/option&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="INSTALL_DATE"&amp;gt;Install Date&amp;lt;/option&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/select&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then modified the search field statement to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;findParams.searchFields = "[" + "\"" + dom.byId("fieldSelect").value + "\"" + "]";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I click my search button I get an Uncaught TypeError: a.join is not a function (FindParameters.js:5)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this is enough information. Does anyone have a solution or a recommendation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 14:17:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87569#M7928</guid>
      <dc:creator>JeffJohnson1</dc:creator>
      <dc:date>2015-05-29T14:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87570#M7929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;findParams.searchFields = [dom.byId("fieldSelect").value];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 14:43:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87570#M7929</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-05-29T14:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87571#M7930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're creating a string instead of an array.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;findParams.searchFields = [];
findParmas.searchFields.push(dom.byId("fieldSelect").value);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:21:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87571#M7930</guid>
      <dc:creator>BillDaigle</dc:creator>
      <dc:date>2021-12-10T23:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87572#M7931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to push it to searchFields not findParams... small typo &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 14:54:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87572#M7931</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-05-29T14:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87573#M7932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah yes...thanks for heads up.&amp;nbsp; I will edit accordingly!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 14:57:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87573#M7932</guid>
      <dc:creator>BillDaigle</dc:creator>
      <dc:date>2015-05-29T14:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87574#M7933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to both of your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried each, and while they both run smoothly without errors, findParams.searchFields is still not getting anything passed to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the following example I found:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif;"&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;var&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; selectedField &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; document&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;getElementById&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #800000;"&gt;'fieldSelect'&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;).value;&lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;CODE style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif;"&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;var&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; index &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; selectedField&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;options&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;[&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;selectedField&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;selectedIndex&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;].&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;value&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;As well as:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;var&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; selectedField &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; dom&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.b&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;yId&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #800000;"&gt;'fieldSelect'&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;).value;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;In the Chrome developer tools debugger, when I created a breakpoint at that line and executed the statement, both examples had the value of selectedField as 'undefined'.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;Is this an issue of not getting the value from the drop down select dijit?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;Thanks.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 15:08:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87574#M7933</guid>
      <dc:creator>JeffJohnson1</dc:creator>
      <dc:date>2015-05-29T15:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87575#M7934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When using a dijit, you usually have to locate in the dom by using &lt;A href="http://dojotoolkit.org/reference-guide/1.10/dijit/registry.html"&gt;dijit/registry&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using &lt;CODE style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif;"&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;var&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; selectedField &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; registry.byId&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #800000;"&gt;'fieldSelect'&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;).value;&lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 15:31:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87575#M7934</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2015-05-29T15:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87576#M7935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you could setup a sandbox or provide us the code it would be really helpful. If you cannot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check if the dom.byId("fieldSelect") is returning the proper node you need. also the getElementById returns an element. I think you dont need to get value of it. like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif;"&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;var&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; selectedField &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; document&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;getElementById&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #800000;"&gt;'fieldSelect'&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;);&lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;CODE style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif;"&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;var&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; index &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; selectedField&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;options&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;[&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;selectedField&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;selectedIndex&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;].&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;value&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; A&lt;SPAN class="pun" style="color: #000000;"&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;lso, check registry.byId. make sure you add the registry module to require.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 15:32:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87576#M7935</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-05-29T15:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87577#M7936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ken is right, In you case you wont be able to get details through dom you need to use the registry.byId&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 15:51:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87577#M7936</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-05-29T15:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87578#M7937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This does work! The registry.byId is showing the field name from the drop down menu value. But the grid is still displaying the wrong results when I run the find task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I check the value of searchFields after this line is executed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f6f6f6;"&gt;findParmas.searchFields.push(registry.byId(&lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f6f6f6;"&gt;"fieldSelect"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;).value);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The array length is still 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I can't setup a sandbox as the server running the map service is private.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 15:55:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87578#M7937</guid>
      <dc:creator>JeffJohnson1</dc:creator>
      <dc:date>2015-05-29T15:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87579#M7938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you provide the code atleast. I think something might be wrong in the flow&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 16:03:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87579#M7938</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-05-29T16:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Question on how to use dijit/form/select in Arc JS API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87580#M7939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alright guys, I found the problem in my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ultimately it was the registry.byId that led me to the answer, I had to rearrange some code after I realized the searchFields was in the wrong function and not in the function that is called when I click the search button. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your help, everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 16:14:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-how-to-use-dijit-form-select-in-arc-js/m-p/87580#M7939</guid>
      <dc:creator>JeffJohnson1</dc:creator>
      <dc:date>2015-05-29T16:14:36Z</dc:date>
    </item>
  </channel>
</rss>

