<?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: Custom task property control (i.e. button/form) in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75592#M49741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have found a workaround for this issue. As &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;org.activiti.designer.gui&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt; contributes to &lt;/SPAN&gt;&lt;STRONG style="text-decoration: underline;"&gt;org.eclipse.ui.views.properties.tabbed.propertySections&lt;/STRONG&gt;&lt;SPAN&gt; eclipse extension-point you could also make a plugin that makes such contribution:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In plugin.xml there are similar contributions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;lt;propertySection&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; class="org.activiti.designer.property.PropertyMailTaskSection"&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; filter="org.activiti.designer.property.PropertyMailTaskFilter"&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; id="org.activiti.designer.mainConfigTab.mailtask"&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; tab="org.activiti.designer.mainConfigTab"&amp;gt;&lt;BR /&gt;&amp;lt;/propertySection&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;UL&gt;&lt;LI&gt;class - is the class that creates SWT layout&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;filter - specifies when that layout would be displayed (i.e. certain node type is selected)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;id - some identifier&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;tab - to which property tab this would be added (if you choose one from provided by activiti-designer your content would appear together with default designer properties, you could also create your own tabs&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Mar 2012 10:23:06 GMT</pubDate>
    <dc:creator>pgadecki</dc:creator>
    <dc:date>2012-03-27T10:23:06Z</dc:date>
    <item>
      <title>Custom task property control (i.e. button/form)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75587#M49736</link>
      <description>I have created an Activiti Designer extension in Eclipse following the 5.6 user guide. I am able to add controls to the Main config tab using the @Property decoration.However I need to add a button to that tab, have the user click on the button to invoke a custom form. This form will interact with o</description>
      <pubDate>Mon, 29 Aug 2011 21:52:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75587#M49736</guid>
      <dc:creator>kjtdude</dc:creator>
      <dc:date>2011-08-29T21:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task property control (i.e. button/form)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75588#M49737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;kjtdude,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;at the moment you can't do this from the property screen. This is subject to this issue &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-414" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-414&lt;/A&gt;&lt;SPAN&gt;, which is, admittedly, not a very high priority since nobody has asked for it so far (until you just did).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would you be able to wait for and use the resolution of that issue?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is another way to accomplish this, which involves creating your own property sheet that then includes our default one (forgive the lack of details, but I don't recall the exact implementation), but that means you can only add things to the top or to the bottom and not somewhere in the middle of the form.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2011 11:27:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75588#M49737</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2011-08-30T11:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task property control (i.e. button/form)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75589#M49738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for the response Tiese.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ACT-414 covers my request in a more generalized manner and I can wait for that feature. If a button control that invokes a user implemented class and returns a string could be implemented in a nearer timeframe that would be greatly appreciated. In the meantime I think I can just create an Eclipse plug-in for our custom configuration UI and have the developer paste the results into a text control. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2011 18:47:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75589#M49738</guid>
      <dc:creator>kjtdude</dc:creator>
      <dc:date>2011-08-30T18:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task property control (i.e. button/form)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75590#M49739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;kjtdude,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;OK, I can look into that intermediary solution. I assume you would want the class to be in the extension JAR?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2011 07:01:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75590#M49739</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2011-08-31T07:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task property control (i.e. button/form)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75591#M49740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;kjtdude,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have created this issue so you can track progress. I'll attempt to look into the temporary solution for the next release. I hope it's feasible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-915" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-915&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Sep 2011 20:49:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75591#M49740</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2011-09-04T20:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task property control (i.e. button/form)</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75592#M49741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have found a workaround for this issue. As &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;org.activiti.designer.gui&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt; contributes to &lt;/SPAN&gt;&lt;STRONG style="text-decoration: underline;"&gt;org.eclipse.ui.views.properties.tabbed.propertySections&lt;/STRONG&gt;&lt;SPAN&gt; eclipse extension-point you could also make a plugin that makes such contribution:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In plugin.xml there are similar contributions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;lt;propertySection&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; class="org.activiti.designer.property.PropertyMailTaskSection"&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; filter="org.activiti.designer.property.PropertyMailTaskFilter"&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; id="org.activiti.designer.mainConfigTab.mailtask"&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; tab="org.activiti.designer.mainConfigTab"&amp;gt;&lt;BR /&gt;&amp;lt;/propertySection&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;UL&gt;&lt;LI&gt;class - is the class that creates SWT layout&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;filter - specifies when that layout would be displayed (i.e. certain node type is selected)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;id - some identifier&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;tab - to which property tab this would be added (if you choose one from provided by activiti-designer your content would appear together with default designer properties, you could also create your own tabs&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2012 10:23:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task-property-control-i-e-button-form/m-p/75592#M49741</guid>
      <dc:creator>pgadecki</dc:creator>
      <dc:date>2012-03-27T10:23:06Z</dc:date>
    </item>
  </channel>
</rss>

