Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void poiNameDialogListener(DialogEvent dialogEvent) {
- DCIteratorBinding poiIterator = ADFUtils.findIterator("OcPoiNameListView1Iterator");
- if (dialogEvent.getOutcome() == DialogEvent.Outcome.ok) {
- Row currentRow = poiIterator.getCurrentRow();
- poiIterator.getRowSetIterator().setCurrentRow(currentRow);
- RichInputListOfValues poiNameUI = (RichInputListOfValues)JSFUtils.findComponentInRoot("poiNameId");
- if (null != poiNameUI) {
- poiNameUI.setValue(currentRow.getAttribute("Name"));
- AdfFacesContext.getCurrentInstance().addPartialTarget(poiNameUI);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement