listing fields in forms.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

listing fields in forms.xml

nashrul
In the form, I try to list fields from a tabel. One of the fields contains a column value from another tabel namely Hl_Master_Source.  The primary key of this Hl_Master_Source table is 'source_code' and the field name I want to display is 'description'.
Here is the form:
<form name="listIncNewSourceCodes" type="list" .....>
<field ...></field>
<field ...></field>
<field name="description" >
<display-entity entity-name="HlMasterSource" key-field-name="sourceCode" description="${description}"/>
</field>
</form>
the problem is, this description value doesn't appear on the form...
How can I display this value ??
Thanks ..