Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void poiCodeDialogListener(DialogEvent dialogEvent) {
- DCIteratorBinding onlyOcPoiView1Iter = ADFUtils.findIterator("OnlyOcPoiView1Iterator");
- Row onlyOcPoiRow = onlyOcPoiView1Iter.getCurrentRow();
- DCIteratorBinding editPdTrfDayView1Iter = ADFUtils.findIterator("EditPdTrfDayView1Iterator");
- Row currentRow = editPdTrfDayView1Iter.getCurrentRow();
- if (dialogEvent.getOutcome() == DialogEvent.Outcome.ok && currentRow != null) {
- currentRow.setAttribute("PoiName", onlyOcPoiRow.getAttribute("Name"));
- currentRow.setAttribute("StartPoiId", onlyOcPoiRow.getAttribute("PoiId"));
- log.debug(" poiId from popup " + (Integer)currentRow.getAttribute("StartPoiId"));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement