When defining a link (belongsTo or hasMany) the name field will be displayed. Is there a way to change the foreign field to show (e.g. the number field)?
In many cases the name field is not unique.
In many cases the name field is not unique.
"fields" : { "caseTest" : { "type" : "link", "field" : "number" } }, "links" : { "caseTest" : { "type" : "belongsTo", "foreign" : "tasksTest", "entity" : "Case" } }
Comment