Create ADF popup for value change event(For select one choice component).

Add popup and add dialog to inside of the popup,then select popup and add value for binding attribute in mine
#{pageFlowScope.popupBean.myPop}.
private RichPopup myPop = new RichPopup();
public void selectOneChoiceEvent(ValueChangeEvent valueChangeEvent) {
RichPopup.PopupHints ph = new RichPopup.PopupHints();
myPop.show(ph);
}
public void setMyPop(RichPopup myPop) {
this.myPop = myPop;
}
public RichPopup getMyPop() {
return myPop;
}

Oracle ADF - Add new custom attribute for view object using Expression

Oracle ADF Client-side Validators

Oracle ADF Association sample for Department and Employee

Wednesday, June 6, 2012

Oracle ADF - Another user has changed the row with Primary key

See : Chris Muir's blog : The case of the phantom ADF developer
Note : You can get above error while inserting/updating , the same entry altering using trigger or procedure. this.getTransaction().setLockingMode(DBTransaction.LOCK_NONE);

No comments:

Post a Comment