Le 16/02/2015 22:54, [email protected] a écrit :
<list-options list-name=" myResultMap.myListName"
key-name="myKeyName" description="myValue"/>
You have a space at the beginning of your value "
myResultMap.myListName" -> "myResultMap.myListName".
But if doesn't work try this :
<form name="myFormName" type="single">
<actions>
<service service-name="myJavaService"
result-map="myResultMap"/>
<set field="myListName" from="myResultMap.myListName"/>
</actions>
<field name="myfield" title="myFieldTitle"
<drop-down allow-empty="true"
current-description="myDescription">
<list-options list-name="myListName" key-name="myKeyName"
description="myValue"/>
</drop-down>
</field>
</form>