我有oracle adf和jdeveloper。 我想获取表中选择行的值并将它们连接起来并在输入文本中显示它们。 我怎么能这样做?
答案 0 :(得分:0)
在这种情况下,您可以使用此代码从迭代器获取当前行,然后从此行获取属性:
// Get the data from an ADF tree or table
DCBindingContainer dcBindings = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
// Get a attribute value of the current row of iterator
DCIteratorBinding iterBind= (DCIteratorBinding)dcBindings.get("testIterator");
String attribute = (String)iterBind.getCurrentRow().getAttribute("field1");
// get other attributes and then concat them
...
蒂莫