<?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: dgrid selector checkbox not showing in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415859#M38280</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem Thejus.&amp;nbsp; I went through the same head breaking struggle about a year ago. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Mar 2016 15:21:08 GMT</pubDate>
    <dc:creator>BillDaigle</dc:creator>
    <dc:date>2016-03-24T15:21:08Z</dc:date>
    <item>
      <title>dgrid selector checkbox not showing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415855#M38276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know, this is not related to esri javascript API but, I am using dgrid included along with the esri api. In my application I need to show the query result in the grid with check-boxes for selection. I tried using the dgrid and selector for it. For some reason it does not display the check-boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below is the jsbin for the sample code.&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsbin.com/rexedebicu/1/edit?html,js,output" title="http://jsbin.com/rexedebicu/1/edit?html,js,output"&gt;JS Bin - Collaborative JavaScript Debugging&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be really appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thejus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 20:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415855#M38276</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2016-03-23T20:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: dgrid selector checkbox not showing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415856#M38277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the editor extension.&amp;nbsp; Here is an example:&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsbin.com/zurorawawa/1/edit?html,js,output" title="http://jsbin.com/zurorawawa/1/edit?html,js,output"&gt;JS Bin - Collaborative JavaScript Debugging&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 22:41:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415856#M38277</guid>
      <dc:creator>BillDaigle</dc:creator>
      <dc:date>2016-03-23T22:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: dgrid selector checkbox not showing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415857#M38278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, you may want to swtich the selection mode to 'none' if you plan to use the checkbox instead of the default selection functionality. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 22:45:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415857#M38278</guid>
      <dc:creator>BillDaigle</dc:creator>
      <dc:date>2016-03-23T22:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: dgrid selector checkbox not showing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415858#M38279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the suggestion. This got me thinking about the version of dgrid, included along with esri api. esri api uses dgrid 0.3.17 version, and according to documentation of that version the selector should be used as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var columns = {&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; col1: selector({ label: "Select", selectorType: "checkbox" }),&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; col2: { label: 'STRC_ID', field: "STRC_ID", sortable: false },&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; col3: { label: 'FNDG_CTGY_NB', field: 'FNDG_CTGY_NB' }&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/P&gt;&lt;P&gt;So that was my mistake. I need to include the latest version of dgrid in my application, as the feature I need are not there in 0.3.17.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help, I was breaking my head trying to figure out 'where I went wrong?'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thejus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 13:38:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415858#M38279</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2016-03-24T13:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: dgrid selector checkbox not showing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415859#M38280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem Thejus.&amp;nbsp; I went through the same head breaking struggle about a year ago. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 15:21:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/dgrid-selector-checkbox-not-showing/m-p/415859#M38280</guid>
      <dc:creator>BillDaigle</dc:creator>
      <dc:date>2016-03-24T15:21:08Z</dc:date>
    </item>
  </channel>
</rss>

