<?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 Can Activiti-cdi map dynamic data components to process variables without having a managed bean in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141157#M98883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BR /&gt;&lt;SPAN&gt;We have a workflow UI in which data elements can be added dynamicaly, for eg user can give different ranges for a threshold&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;lets say ,&amp;nbsp; Target &amp;lt; 100 is good, Target &amp;gt; 150 is bad , target &amp;gt;= 300 is very bad. User has the choice to either give only 1 range&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;or he can also give upto 10 ranges. User is shown a Add button to add a range and that gives him a data panel dynamically to add it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In that data panel he selects the Operator (&amp;lt;, &amp;gt;, &amp;lt;=, &amp;gt;=,=) and then he enters a value, and then he selects the range type(good, bad, excellent etc) from drop down. Can we model this screen with Activiti-Cdi such that the screen elements are directly set as process variables using&amp;nbsp; @BusinessProcessScoped bean without the need of intermediate Managed bean. In that case how will these dynamic ranges get mapped to the bean. We want these ranges to get set as a ArrayList of beans, and the arrayList itself is a field of the BusinessProcessScoped bean. Also before starting the BPM process we need to validate these data element and throw messages to the user in case he inputs some overlapping ranges. Will this be possible without using a regular Managed bean ??&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 May 2013 18:31:50 GMT</pubDate>
    <dc:creator>chimu</dc:creator>
    <dc:date>2013-05-20T18:31:50Z</dc:date>
    <item>
      <title>Can Activiti-cdi map dynamic data components to process variables without having a managed bean</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141157#M98883</link>
      <description>We have a workflow UI in which data elements can be added dynamicaly, for eg user can give different ranges for a thresholdlets say ,&amp;nbsp; Target &amp;lt; 100 is good, Target &amp;gt; 150 is bad , target &amp;gt;= 300 is very bad. User has the choice to either give only 1 rangeor he can also give upto 10 ranges. Us</description>
      <pubDate>Mon, 20 May 2013 18:31:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141157#M98883</guid>
      <dc:creator>chimu</dc:creator>
      <dc:date>2013-05-20T18:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can Activiti-cdi map dynamic data components to process variables without having a managed bean</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141158#M98884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can have the ArrayList as a field of the Serializable @BusinessProcessScoped, this will also be stored in the activiti database (serialized), so you can access the array list in e.g.. expressions or JavaDelegates in the process and perform validation.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 05:46:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141158#M98884</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-05-22T05:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can Activiti-cdi map dynamic data components to process variables without having a managed bean</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141159#M98885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You didn't get my question correct, we are looking for JSF validations and we will start the BPM process only after we have passed the validations stage, so we haven't reached the JavaDelegate/Expressions yet.&amp;nbsp; Another point which still remains unanswered is how we map these dynamic data panels to Beans inside the Arraylist.&amp;nbsp; We were using the following syntax to map static text box to process variables&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; p:inputText value="#{processVariables['noOfDays']}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;, but now we have a complex screen to map with dynamic text boxes.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 06:04:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141159#M98885</guid>
      <dc:creator>chimu</dc:creator>
      <dc:date>2013-05-22T06:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can Activiti-cdi map dynamic data components to process variables without having a managed bean</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141160#M98886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I guess you'll have to bind your UI to an intermediate model and, after validation and binding, flush that to activiti… I'm not a JSF-binding expert so I that's the best I can do &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>Wed, 22 May 2013 06:23:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/can-activiti-cdi-map-dynamic-data-components-to-process/m-p/141160#M98886</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-05-22T06:23:29Z</dc:date>
    </item>
  </channel>
</rss>

