<?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: Activiti_Explorer not refreshing menu entries as expected in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111703#M78568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I thank you for the buffix solution , my TODO list has shrunk by one point. &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://connect.hyland.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Nov 2012 20:31:01 GMT</pubDate>
    <dc:creator>udoderk</dc:creator>
    <dc:date>2012-11-23T20:31:01Z</dc:date>
    <item>
      <title>Activiti_Explorer not refreshing menu entries as expected</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111700#M78565</link>
      <description>Hi I have an issue with Activiti-Explorer and I hope someone can help.&amp;nbsp; Firstly Acitiviti's a great product and well done to all those involved in the dev' of the s/w.&amp;nbsp; However I have an issue that I'm unable to fix within the Activiti-Explorer web application regarding the refreshing of tasks queue</description>
      <pubDate>Fri, 16 Nov 2012 13:33:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111700#M78565</guid>
      <dc:creator>jon_k_</dc:creator>
      <dc:date>2012-11-16T13:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti_Explorer not refreshing menu entries as expected</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111701#M78566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;First of all, activiti is a developer-platform and the Explorer-app is an app demonstrating the usage of the full Activiti API. The queued menu's are not altered after task-operations, only the assigned and involved tabs are. Pressing F5 doesn't refresh the list, as Vaadin caches the widget-state on the server. When changing page, this list is refeshed again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We opted for this strategy (not refreshing queued) as this can be a heavy query to perform on "every" operation you do in the UI. You can, off course, alter this behavior in the app yourself to suit your needs…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 13:40:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111701#M78566</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2012-11-16T13:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti_Explorer not refreshing menu entries as expected</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111702#M78567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, got it.&amp;nbsp;&amp;nbsp; Thank you for your reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;… Update…&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After downloading the Activiti-Webapp-Explorer2 source code and adjusting to get the desired behaviour I thought I'd post back to let anybody else who may be interested know where to inject the code within the application to gain the functionality as described in my earlier post.&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;1. find the TaskDetailPanel class and within this the initTaskForm() method and then the handleFormSubmit method.&lt;BR /&gt;2. inject the following line of code so it's the last line of code in the handleFormSubmit method to cause the refresh of the UI &lt;CODE&gt;taskPage.initUi();&lt;/CODE&gt;&lt;/UL&gt;&lt;SPAN&gt;In my case I wrapped the call to refresh inside a function that filtered whether or not the refresh actually needed to take place.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If anyone's interested the following is an overview of code within the application, what to look for and where I placed the code to refresh the menu bar&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;package org.activiti.explorer.ui.task;&lt;BR /&gt;public class TaskDetailPanel…&lt;BR /&gt;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp; protected void initTaskForm() {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(formData != null… ) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; @Override&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void handleFormSubmit(FormPropertiesEvent event) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; taskPage.initUi(); // *** new injected code ***&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; } else {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;}&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, great job.&amp;nbsp; And thank you for your advice and prompt response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;JK&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 15:03:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111702#M78567</guid>
      <dc:creator>jon_k_</dc:creator>
      <dc:date>2012-11-16T15:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti_Explorer not refreshing menu entries as expected</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111703#M78568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I thank you for the buffix solution , my TODO list has shrunk by one point. &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://connect.hyland.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 20:31:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111703#M78568</guid>
      <dc:creator>udoderk</dc:creator>
      <dc:date>2012-11-23T20:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti_Explorer not refreshing menu entries as expected</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111704#M78569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;…&lt;BR /&gt;We opted for this strategy (not refreshing queued) as this can be a heavy query to perform on "every" operation you do in the UI. You can, off course, alter this behavior in the app yourself to suit your needs…&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;The refresh button on some place on gui would be (imho) better solution, to avoid the "automatically" refreshing after "every" operation. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The current solution is&amp;nbsp; realy not optimal &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&amp;nbsp; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: An user of this web applicarion just click on entries to perform the operation and amazes, because no operations to do…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 20:43:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-explorer-not-refreshing-menu-entries-as-expected/m-p/111704#M78569</guid>
      <dc:creator>udoderk</dc:creator>
      <dc:date>2012-11-23T20:43:11Z</dc:date>
    </item>
  </channel>
</rss>

