<?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>idea UNDO &amp;quot;Make this the only selectable layer&amp;quot; in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idi-p/1649967</link>
    <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;this question was asked&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;4&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;years ago, but still no solution.&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/undo-quot-make-this-the-only-selectable-layer-quot/td-p/1123041" target="_blank" rel="noopener"&gt;Solved: UNDO "Make this the only selectable layer" - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;apparently, it should be simple and straightforward, but practically it is a pain.&lt;/P&gt;&lt;P&gt;I have 4 CAD layers in a map, and I made one of them as only selectable, the problem is the CAD files are groups within groups. now when I want to make all layer selectable I have to go to all groups expand them and make all of the selectable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;this procedure is fine for on time, but for several time it is simply a pain. &lt;U&gt;I looked at arcpy to find away iterate&lt;/U&gt; over layer to make all of them selectable but could not find&amp;nbsp; a solution.&lt;BR /&gt;&lt;BR /&gt;The requested feature us add&lt;STRONG&gt; a command to make all layers (supported layers) selectable&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 15 Sep 2025 16:11:40 GMT</pubDate>
    <dc:creator>Nabaz_Gharib</dc:creator>
    <dc:date>2025-09-15T16:11:40Z</dc:date>
    <item>
      <title>UNDO "Make this the only selectable layer"</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idi-p/1649967</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;this question was asked&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;4&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;years ago, but still no solution.&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/undo-quot-make-this-the-only-selectable-layer-quot/td-p/1123041" target="_blank" rel="noopener"&gt;Solved: UNDO "Make this the only selectable layer" - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;apparently, it should be simple and straightforward, but practically it is a pain.&lt;/P&gt;&lt;P&gt;I have 4 CAD layers in a map, and I made one of them as only selectable, the problem is the CAD files are groups within groups. now when I want to make all layer selectable I have to go to all groups expand them and make all of the selectable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;this procedure is fine for on time, but for several time it is simply a pain. &lt;U&gt;I looked at arcpy to find away iterate&lt;/U&gt; over layer to make all of them selectable but could not find&amp;nbsp; a solution.&lt;BR /&gt;&lt;BR /&gt;The requested feature us add&lt;STRONG&gt; a command to make all layers (supported layers) selectable&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 15 Sep 2025 16:11:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idi-p/1649967</guid>
      <dc:creator>Nabaz_Gharib</dc:creator>
      <dc:date>2025-09-15T16:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: UNDO "Make this the only selectable layer"</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idc-p/1650036#M36133</link>
      <description>&lt;P&gt;Related:&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/turn-off-editing-selection-for-group-layers/idi-p/1193179" target="_blank"&gt;Turn off editing, selection for group layers - Esri Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Sep 2025 12:57:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idc-p/1650036#M36133</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-09-12T12:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: UNDO "Make this the only selectable layer"</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idc-p/1654722#M36329</link>
      <description>&lt;P&gt;It is possible to do this using CIM access, but it takes a bit of time, so I would appreciate it if there were a better way to do it.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy

aprx=arcpy.mp.ArcGISProject("CURRENT")

view=aprx.activeView

mapname=view.map.name
maps=aprx.listMaps(mapname)[0]
lyrs=maps.listLayers()

for l in lyrs:
    l_cim=l.getDefinition('V3')
    try:
        if l_cim.selectable:
            continue
        else:
            l_cim.selectable=True

            l.setDefinition(l_cim)
    except:
        continue&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 05:24:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idc-p/1654722#M36329</guid>
      <dc:creator>-_-</dc:creator>
      <dc:date>2025-10-02T05:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: UNDO "Make this the only selectable layer"</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idc-p/1661170#M36561</link>
      <description>&lt;P&gt;Thank&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/628304"&gt;@-_-&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works, and this is the only solution for now.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 05:49:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/undo-quot-make-this-the-only-selectable-layer-quot/idc-p/1661170#M36561</guid>
      <dc:creator>Nabaz_Gharib</dc:creator>
      <dc:date>2025-10-28T05:49:37Z</dc:date>
    </item>
  </channel>
</rss>

