You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Sharan Foga (JIRA)" <ji...@apache.org> on 2015/02/21 08:34:20 UTC

[jira] [Updated] (OFBIZ-4885) Support for closure, if and loop for inline groovy script in set filed of action tag.

     [ https://issues.apache.org/jira/browse/OFBIZ-4885?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sharan Foga updated OFBIZ-4885:
-------------------------------
    Sprint: Bug Crush Event - 21/2/2015

> Support for closure, if and loop for inline groovy script in set filed of action tag.
> -------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4885
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4885
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: framework
>    Affects Versions: Trunk
>            Reporter: Amit Kumar
>              Labels: closure, groovy, inline, patch
>         Attachments: OFBIZ-4885_Support for closure in inline groovy script.patch, OFBIZ-4885_Support for closure in inline groovy script.patch
>
>
> Currently, we can use inline groovy script in set field tag of action tag in screens and forms. like
> <form>
> <action>
>     <set field="tempVar" value="${groovy: someList?someList.size():0;}"/>
> </action>
> </form>
> But, we can not use closure, if or loop in this kind of inline groovy. like
> <form>
> <action>
>     <set field="tempVar" value="${groovy: str=''; someList.each{str=str+it}}"/>
> </action>
> </form>
> The reason is that matching closing } braces for any opening { braces in the script are ignored and script does not get compiled if it contains any set of { and }.
> So, I have added a patch which makes it possible to use closure, if and loop by handling { and } braces occurs with in the script.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)