<?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 Render text property as textarea in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303817#M256947</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;is it possible to render property from workflow task (type d:text) like textarea using renderNamedRegion() method? I couldn't figure that out. Anybody knows any other way in wich control is automatically binded to workflow task property?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Joso&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Feb 2014 10:28:34 GMT</pubDate>
    <dc:creator>mrjay</dc:creator>
    <dc:date>2014-02-21T10:28:34Z</dc:date>
    <item>
      <title>Render text property as textarea</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303817#M256947</link>
      <description>Hi everyone,is it possible to render property from workflow task (type d:text) like textarea using renderNamedRegion() method? I couldn't figure that out. Anybody knows any other way in wich control is automatically binded to workflow task property?Thanks in advance,Joso</description>
      <pubDate>Fri, 21 Feb 2014 10:28:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303817#M256947</guid>
      <dc:creator>mrjay</dc:creator>
      <dc:date>2014-02-21T10:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Render text property as textarea</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303818#M256948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;you could configure it in share-config-custom.xml file&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Where you can define control template as textarea for that property in workflow task form.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Feb 2014 14:01:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303818#M256948</guid>
      <dc:creator>mitpatoliya</dc:creator>
      <dc:date>2014-02-21T14:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Render text property as textarea</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303819#M256949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;let me now if i understood you well. If I made some form customization in share, like this one, it will reflect in workdesk? This sounds pretty strange to me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Joso&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Feb 2014 14:35:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303819#M256949</guid>
      <dc:creator>mrjay</dc:creator>
      <dc:date>2014-02-21T14:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Render text property as textarea</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303820#M256950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Joso,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Customizing share-config-custom.xml won´t change behavior of property fields in Workdesk. In Workdesk you`d have to implement (or use one of the default fieldcontrols) a fieldcontrol for your use case and apply it to the property you want to display as text area. A good example and very similar is the default FieldControl OwFieldManagerControlNote (see also Workdesk Configuration Guide and in code class com.wewebu.ow.server.fieldctrlimpl.OwFieldManagerControlNote). You would configure it in owbootstrap.xml in the FieldControls node like the following example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;FieldControls&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;FieldControl fieldclass="com.wewebu.ow.server.fieldctrlimpl.OwFieldManagerControlNote" objecttype="D:namespace:yourObject.namespace:yourTextProperty" &amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/FieldControl&amp;gt;&lt;BR /&gt;&amp;lt;/FieldControls&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;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Deko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 10:58:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/render-text-property-as-textarea/m-p/303820#M256950</guid>
      <dc:creator>deko</dc:creator>
      <dc:date>2014-02-26T10:58:24Z</dc:date>
    </item>
  </channel>
</rss>

