OpenUI 获取值列表
OpenUI Get List of Values
我正在寻找一个智能解决方案,如何从 Siebel 的业务组件中检索 LoV 中的数据。我试图阅读控件,...
var controls = this.GetPM().Get("GetControls");
for(var control in controls){
var value = this.GetPM().ExecuteMethod("GetFieldValue", controls[control]);
}
还有...
this.GetPM().Get("GetRecordSet");
但是 LoV 的结果仍然是“”。有没有没有业务服务来获取值列表的方法?
经过长时间的搜索,我们得到了以下答案,...
At the moment it is not possible. The problem is that the PM can only
see the active values of the Applet. The LoV (select in HTML) is
getting generated as soon the client clicks active on the select
element.
我们现在构建一个业务服务 (BS),它提供我需要呈现的值列表。
亲切的问候,
迈拉克
我正在寻找一个智能解决方案,如何从 Siebel 的业务组件中检索 LoV 中的数据。我试图阅读控件,...
var controls = this.GetPM().Get("GetControls");
for(var control in controls){
var value = this.GetPM().ExecuteMethod("GetFieldValue", controls[control]);
}
还有...
this.GetPM().Get("GetRecordSet");
但是 LoV 的结果仍然是“”。有没有没有业务服务来获取值列表的方法?
经过长时间的搜索,我们得到了以下答案,...
At the moment it is not possible. The problem is that the PM can only see the active values of the Applet. The LoV (select in HTML) is getting generated as soon the client clicks active on the select element.
我们现在构建一个业务服务 (BS),它提供我需要呈现的值列表。
亲切的问候, 迈拉克