我想在 SAP CAP NodeJS 项目的对象页面上有一个多输入字段。
试图通过文档解决这个问题。
https://sapui5.hana.ondemand.com/#/topic/04ff5b1a81344a8e8169ea99630ff4e5
但是这个例子真的很少有记录。
entity Applications: managed {
...
systems : Composition of many Systems on systems.application = $self
}
entity Systems {
KEY GUID : UUID;
name : String;
application : Association to Applications;
}
渲染
{
$Type : 'UI.DataField',<br>
Value : systems.name,
Label : 'System Name'
}
这样,Multiline 无法正常工作。也许我错过了一些东西(也没有记录)......
有人有提示或很好的例子吗?