Oracle ADF - Jdeveloper 在来自 View 对象的另一个属性值的输入中使用 shortdesc

Oracle ADF - Jdeveloper use shortdesc in input from the value of another attribute of the View object

我有一个输入,我想用视图对象的另一个属性的值填充 shortDesc 属性,我该怎么做?

提前致谢。

在页面的绑定中,创建一个绑定到视图对象的 attributeValues。那么在 shortDesc 属性 中,它将是:

shortDesc="#{bindings.nameOfAttributeValuesBinding.inputValue}"

当视图对象转到给定行时,attributeValues 绑定会更新该值。您可能需要在组件上放置一个部分触发器,以便它会在 UI 操作发生时更新,具体取决于您正在做什么。