<?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 Items selection in a custom task in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265241#M218371</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone know how to add one of those "Items" option to add or remove items in a custom task? I have a workflow that starts with "bpm:startTask", there is an items option there where I can choose documents to add in the workflow, I'd like to do the same thing in my custom task. I've tried to override the "bpm&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ackageActionGroup" and add an association with "bpm&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ackage" but it didn't work. The parent of my task is "wf:activitiReviewTask" (workflowModel), I'm using Alfresco 4 and share.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2012 21:30:44 GMT</pubDate>
    <dc:creator>juniorbl</dc:creator>
    <dc:date>2012-04-30T21:30:44Z</dc:date>
    <item>
      <title>Items selection in a custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265241#M218371</link>
      <description>Hi everyone,Does anyone know how to add one of those "Items" option to add or remove items in a custom task? I have a workflow that starts with "bpm:startTask", there is an items option there where I can choose documents to add in the workflow, I'd like to do the same thing in my custom task. I've t</description>
      <pubDate>Mon, 30 Apr 2012 21:30:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265241#M218371</guid>
      <dc:creator>juniorbl</dc:creator>
      <dc:date>2012-04-30T21:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Items selection in a custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265242#M218372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If I understand correctly, you just need to add something like the following to your workflow model to get the desired behaviour:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!– This review task can add items and view existing ones –&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;type name="mywf:myReviewTask"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;parent&amp;gt;wf:activitiReviewTask&amp;lt;/parent&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;overrides&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;property name="bpm:packageActionGroup"&amp;gt;&lt;BR /&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;lt;default&amp;gt;add_package_item_actions&amp;lt;/default&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/property&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;property name="bpm:packageItemActionGroup"&amp;gt;&lt;BR /&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;lt;default&amp;gt;read_package_item_actions&amp;lt;/default&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/property&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/overrides&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/type&amp;gt;&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;/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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 23:36:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265242#M218372</guid>
      <dc:creator>lyles</dc:creator>
      <dc:date>2012-04-30T23:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Items selection in a custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265243#M218373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think you can find the explanation here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://wiki.alfresco.com/wiki/WorkflowAdministration#Workflow_Package_Actions" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/WorkflowAdministration#Workflow_Package_Actions&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 07:57:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265243#M218373</guid>
      <dc:creator>supta</dc:creator>
      <dc:date>2012-05-01T07:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Items selection in a custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265244#M218374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Great but what should I put in share-config-custom to display it correctly? I tried bpm&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ackageActionGroup and bpm&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ackageItemActionGroup but I only see a normal text input, if I put just packageItems in the show and field tags I can see the list of items but I cannnot add new ones.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 13:38:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265244#M218374</guid>
      <dc:creator>juniorbl</dc:creator>
      <dc:date>2012-05-01T13:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Items selection in a custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265245#M218375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It's working, I've started a new workflow and I can see it now, I just added "&amp;lt;show id="packageItems" /&amp;gt;" and "&amp;lt;field id="packageItems" set="items" /&amp;gt;" with the "overrides" tag above, the problem was that it wasn't updating the one I was testing. Thank you for the help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 17:29:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/items-selection-in-a-custom-task/m-p/265245#M218375</guid>
      <dc:creator>juniorbl</dc:creator>
      <dc:date>2012-05-01T17:29:24Z</dc:date>
    </item>
  </channel>
</rss>

