<?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: how to create dynamic table user interface in forms ? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8613#M2836</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A couple of answers:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Joram: The YUI library we use in Explorer does indeed support these features, see examples at: &lt;/SPAN&gt;&lt;A href="http://developer.yahoo.com/yui/examples/datatable/dt_rowdatamod.html" rel="nofollow noopener noreferrer"&gt;http://developer.yahoo.com/yui/examples/datatable/dt_rowdatamod.html&lt;/A&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;A href="http://developer.yahoo.com/yui/examples/datatable/dt_cellediting.html" rel="nofollow noopener noreferrer"&gt;http://developer.yahoo.com/yui/examples/datatable/dt_cellediting.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rahul: No, the client side element of the forms component within Explorer does not allow for user editable tabular data at the moment. To add support you'd need to handle both the client side elements (achieved using YUI DataTable and a standard html table output from the ftl) and the server side validation and storing of that data.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Aug 2010 20:29:35 GMT</pubDate>
    <dc:creator>davidcognite</dc:creator>
    <dc:date>2010-08-25T20:29:35Z</dc:date>
    <item>
      <title>how to create dynamic table user interface in forms ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8609#M2832</link>
      <description>Hi Folks,Just wondering in activiti task-forms how does one create dynamic table user-interface ( the one in which user can add rows, delete rows, edit any row) ? and how would you store that data back into process variable? This is a very common UI requirement across business processes like expense</description>
      <pubDate>Wed, 25 Aug 2010 03:45:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8609#M2832</guid>
      <dc:creator>rahul1</dc:creator>
      <dc:date>2010-08-25T03:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to create dynamic table user interface in forms ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8610#M2833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you elaborate what exactly you mean with dynamic table user-interface?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you mean that you want to specify a number of properties and their type in a human task activity inside a process and that Activiti Explorer then shows a form in table layout to get the user input for that task?&amp;nbsp; Or something else?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 15:31:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8610#M2833</guid>
      <dc:creator>tombaeyens</dc:creator>
      <dc:date>2010-08-25T15:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to create dynamic table user interface in forms ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8611#M2834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;more like if i define an array or map type and then activiti explorer shows a form in table layout in which the user can add rows of data, edit rows, delete rows and then finally submit the table of data back to process..thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 17:50:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8611#M2834</guid>
      <dc:creator>rahul1</dc:creator>
      <dc:date>2010-08-25T17:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to create dynamic table user interface in forms ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8612#M2835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The display of the table can be done by using basic freemarker (example from wikipedia):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;#list messages as m&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;p&amp;gt;&amp;lt;b&amp;gt;${m.from}:&amp;lt;/b&amp;gt; ${m.body}&amp;lt;/p&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/#list&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, if you want to delete, update, etc, rows, than you would need a more powerful component. I dont know if it would be possible with some javascript framework for example.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 18:45:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8612#M2835</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2010-08-25T18:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to create dynamic table user interface in forms ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8613#M2836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A couple of answers:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Joram: The YUI library we use in Explorer does indeed support these features, see examples at: &lt;/SPAN&gt;&lt;A href="http://developer.yahoo.com/yui/examples/datatable/dt_rowdatamod.html" rel="nofollow noopener noreferrer"&gt;http://developer.yahoo.com/yui/examples/datatable/dt_rowdatamod.html&lt;/A&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;A href="http://developer.yahoo.com/yui/examples/datatable/dt_cellediting.html" rel="nofollow noopener noreferrer"&gt;http://developer.yahoo.com/yui/examples/datatable/dt_cellediting.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rahul: No, the client side element of the forms component within Explorer does not allow for user editable tabular data at the moment. To add support you'd need to handle both the client side elements (achieved using YUI DataTable and a standard html table output from the ftl) and the server side validation and storing of that data.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 20:29:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8613#M2836</guid>
      <dc:creator>davidcognite</dc:creator>
      <dc:date>2010-08-25T20:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to create dynamic table user interface in forms ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8614#M2837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt; Please any one tel me how to create dynamic table user interface in forms&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2014 08:39:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8614#M2837</guid>
      <dc:creator>jeetesh</dc:creator>
      <dc:date>2014-08-09T08:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to create dynamic table user interface in forms ?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8615#M2838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Please do not revive 2 year old threads -&amp;nbsp; instead create a new one.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, to answer your question: you're question is very vague. Maybe share the technology you're using, your actviti setup and what you exactly mean with "dynamic table". Also, what have you already tried?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2014 07:49:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-create-dynamic-table-user-interface-in-forms/m-p/8615#M2838</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2014-08-11T07:49:26Z</dc:date>
    </item>
  </channel>
</rss>

