<?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: 'Details of' page not refreshed after action click in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118087#M83293</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hm, sadly, this only solves the first issue mentioned in the original post. The property sheet is still not rebuilt (and still shows, when I remove an aspect using the clicked action, the aspect's fields).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas how to tackle this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know of a related &lt;/SPAN&gt;&lt;A href="http://forums.alfresco.com/viewtopic.php?p=31476#31476" rel="nofollow noopener noreferrer"&gt;Java workaround&lt;/A&gt;&lt;SPAN&gt; but I think this is a bug: the property sheet should realize itself when it needs to update itself.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Nov 2007 11:31:51 GMT</pubDate>
    <dc:creator>hbf</dc:creator>
    <dc:date>2007-11-07T11:31:51Z</dc:date>
    <item>
      <title>'Details of' page not refreshed after action click</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118084#M83290</link>
      <description>I have implemented a client action for the action group "doc_details_actions". The action (see JavaScript code below) adds an aspect to the current node. The problem is that afterwards* the evaluator is not called again* the property sheet is not rebuildHow can this be fixed?(This seems to be relate</description>
      <pubDate>Wed, 07 Nov 2007 06:41:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118084#M83290</guid>
      <dc:creator>hbf</dc:creator>
      <dc:date>2007-11-07T06:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: 'Details of' page not refreshed after action click</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118085#M83291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;history.back() just go back to previous page. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;you can try to locate your previous page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Because you've got the node,you can go to there, or to the parent(node.parent)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;e.g. &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;var loc="http://" + location.hostname + "/alfresco/navigate/browse/workspace/SpacesStore/" + node.id&lt;BR /&gt;&lt;BR /&gt;var goBack = "&amp;lt;script&amp;gt;location.href = '" + loc + "'script&amp;gt;"; &lt;BR /&gt;goBack;&amp;nbsp; &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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to go the details of a space or document you have to change "browse" with "showSpaceDetails" or "showDocDetails".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think this should work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Friendly regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Nick&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 08:03:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118085#M83291</guid>
      <dc:creator>xerox</dc:creator>
      <dc:date>2007-11-07T08:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: 'Details of' page not refreshed after action click</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118086#M83292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Works perfectly. Thanks a lot for the hint, here's the code I use&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;// Ã¢â‚¬Â¦&lt;BR /&gt;&lt;BR /&gt;// return to previous page&lt;BR /&gt;// (See &lt;A href="http://forums.alfresco.com/viewtopic.php?t=4654" rel="nofollow noopener noreferrer"&gt;http://forums.alfresco.com/viewtopic.php?t=4654&lt;/A&gt; and&lt;BR /&gt;// &lt;A href="http://wiki.alfresco.com/wiki/Externalised_Client_Actions" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Externalised_Client_Actions&lt;/A&gt;.)&lt;BR /&gt;var goBack = "&amp;lt;script&amp;gt;location.href = 'http://' + location.hostname + ':8080/alfresco/navigate/showDocDetails/workspace/SpacesStore/" + node.id + "';&amp;lt;/script&amp;gt;"; &lt;BR /&gt;goBack;&lt;BR /&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;/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;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Many thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. I added a link to this post to the &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/w/index.php?title=Externalised_Client_Actions" rel="nofollow noopener noreferrer"&gt;Externalised Client Actions&lt;/A&gt;&lt;SPAN&gt; wiki page.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 11:19:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118086#M83292</guid>
      <dc:creator>hbf</dc:creator>
      <dc:date>2007-11-07T11:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: 'Details of' page not refreshed after action click</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118087#M83293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hm, sadly, this only solves the first issue mentioned in the original post. The property sheet is still not rebuilt (and still shows, when I remove an aspect using the clicked action, the aspect's fields).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas how to tackle this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know of a related &lt;/SPAN&gt;&lt;A href="http://forums.alfresco.com/viewtopic.php?p=31476#31476" rel="nofollow noopener noreferrer"&gt;Java workaround&lt;/A&gt;&lt;SPAN&gt; but I think this is a bug: the property sheet should realize itself when it needs to update itself.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 11:31:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118087#M83293</guid>
      <dc:creator>hbf</dc:creator>
      <dc:date>2007-11-07T11:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: 'Details of' page not refreshed after action click</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118088#M83294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm not familiar with this problem…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You do the node.save action? Because else the properties modification aren't saved..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 11:42:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118088#M83294</guid>
      <dc:creator>xerox</dc:creator>
      <dc:date>2007-11-07T11:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: 'Details of' page not refreshed after action click</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118089#M83295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You do the node.save action? Because else the properties modification aren't saved..&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;If think you don't have to (node.save() is needed if you change properties). But even if I do, the behaviour is still the same.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But thanks a lot for taking the time to help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kaspar&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 11:50:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118089#M83295</guid>
      <dc:creator>hbf</dc:creator>
      <dc:date>2007-11-07T11:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: 'Details of' page not refreshed after action click</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118090#M83296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;this is from the javascript api(wiki)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;IMPORTANT: It should be noted that the node.save() API call is needed to persist the property modifications - all other modifications made using the API (e.g. content or adding aspects) take immediate effect. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alfresco, can you check at this propery sheet problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;friendly regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Nick&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 11:55:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/details-of-page-not-refreshed-after-action-click/m-p/118090#M83296</guid>
      <dc:creator>xerox</dc:creator>
      <dc:date>2007-11-07T11:55:26Z</dc:date>
    </item>
  </channel>
</rss>

