我目前正在开发一个 CRUD 应用程序,并且我已经定义了一个这样的 LOV:
我的问题是如何获得所有这些返回值,例如像这样定义的 ValueChangeListener:
public void onValueChanged(ValueChangeEvent ev){
BindingContext bctx = BindingContext.getCurrent();
oracle.binding.BindingContainer bindings = bctx.getCurrentBindingsEntry();
DCIteratorBinding iterBind = (DCIteratorBinding)bindings.get("MpStavkeulazaView5Iterator");
System.out.println("Vrijednost je" + ev.getNewValue());
}
这段代码只给了我列表属性的值,但我也想要其他值。
任何其他信息请告诉我。