<?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: Can I delete a discussion reply? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248688#M201818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I cannot recreate your problem around discussion updates. Perhaps it was due to the certificate problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I agree that it is weird there is not a "Delete" UI action on Share discussion replies. I have never noticed that before.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sorry that menu item isn't there for you. If you are in a pinch you can always use JavaScript to delete the reply. I like to have &lt;/SPAN&gt;&lt;A href="https://addons.alfresco.com/addons/javascript-console" rel="nofollow noopener noreferrer"&gt;Florian Maul's JavaScript Console&lt;/A&gt;&lt;SPAN&gt; installed for just such an occasion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you use the Node Browser to search for or navigate to the reply you want to delete, you can grab its node reference. With that you can then use JavaScript to delete it, like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;var reply = search.findNode('workspace://SpacesStore/ab985b53-ec50-426a-bbae-a75fc8efffa9');&lt;BR /&gt;reply.remove();&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't want to use JavaScript for some reason and you have a tool that can issue HTTP methods handy (like curl), you can also delete it like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;curl -X DELETE -uadmin:admin &lt;A href="http://localhost:8080/alfresco/s/api/node/workspace/SpacesStore/a40cae26-062c-4425-bb93-3bf9ae28749a" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/s/api/node/workspace/SpacesStore/a40cae26-062c-4425-bb93-3bf9ae28749a&lt;/A&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure you are deleting the reply and not the topic.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Aug 2012 22:28:56 GMT</pubDate>
    <dc:creator>jpotts</dc:creator>
    <dc:date>2012-08-20T22:28:56Z</dc:date>
    <item>
      <title>Can I delete a discussion reply?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248687#M201817</link>
      <description>Hello,I recently observed that I had replied in a faulty way to some Discussion Topic and tried to edit my reply. The response I got when I pressed "Update" after correcting the reply was an unexpected "Unable to save reply". I tried to reproduce this with some other topics and replies, but to no av</description>
      <pubDate>Sat, 18 Aug 2012 18:55:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248687#M201817</guid>
      <dc:creator>vassilisx</dc:creator>
      <dc:date>2012-08-18T18:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can I delete a discussion reply?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248688#M201818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I cannot recreate your problem around discussion updates. Perhaps it was due to the certificate problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I agree that it is weird there is not a "Delete" UI action on Share discussion replies. I have never noticed that before.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sorry that menu item isn't there for you. If you are in a pinch you can always use JavaScript to delete the reply. I like to have &lt;/SPAN&gt;&lt;A href="https://addons.alfresco.com/addons/javascript-console" rel="nofollow noopener noreferrer"&gt;Florian Maul's JavaScript Console&lt;/A&gt;&lt;SPAN&gt; installed for just such an occasion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you use the Node Browser to search for or navigate to the reply you want to delete, you can grab its node reference. With that you can then use JavaScript to delete it, like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;var reply = search.findNode('workspace://SpacesStore/ab985b53-ec50-426a-bbae-a75fc8efffa9');&lt;BR /&gt;reply.remove();&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't want to use JavaScript for some reason and you have a tool that can issue HTTP methods handy (like curl), you can also delete it like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;curl -X DELETE -uadmin:admin &lt;A href="http://localhost:8080/alfresco/s/api/node/workspace/SpacesStore/a40cae26-062c-4425-bb93-3bf9ae28749a" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/s/api/node/workspace/SpacesStore/a40cae26-062c-4425-bb93-3bf9ae28749a&lt;/A&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure you are deleting the reply and not the topic.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2012 22:28:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248688#M201818</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2012-08-20T22:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can I delete a discussion reply?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248689#M201819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanx a lot Jeff. Your post is very helpful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Vassilis&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2012 16:04:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248689#M201819</guid>
      <dc:creator>vassilisx</dc:creator>
      <dc:date>2012-08-21T16:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can I delete a discussion reply?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248690#M201820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No problem. I've also let product management know about the need for that Delete link in the Discussion form.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2012 16:28:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-i-delete-a-discussion-reply/m-p/248690#M201820</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2012-08-21T16:28:31Z</dc:date>
    </item>
  </channel>
</rss>

