I am setting array of strings(strings dynamic values)in custom property (text box) at alfresco form share.but I need to allign them in proper rows and columns.How to allign dynamic array values in the proper table(inside text box)
//Task Script :- xyz.bpmn
var stringcollection = "Column1:"+value1+" "+" :"+Column2+"value1 "+"End Date: "+stopDate+""................ further concatinated strings. execution.setVariable('abc:def', stringcollection);
I need to sort these collection of strings in rows and columns inside text box in task form(workflow alfresco share).
//Share UI visibility with custom size text box. sharecustomconfig.xml
<config evaluator="task-type" condition="abc:taskname">
<forms>
<form>
<field-visibility>
<show id="abc:def"/>
<show id="packageItems" />
<show id="bpm:comment" />
</field-visibility>
<appearance>
<field id="abc:def" label="abcdef" read-only="true">
<control template="/org/alfresco/components/form/controls/textarea.ftl">
<control-param name="style">color: black</control-param>
<control-param name="rows">6</control-param>
<control-param name="columns">6</control-param>
</control>
</field>
</appearance>
</form>
</forms>
</config>