actionEvent is the event on which you want to reset the component values to null or clear the previous values in popup or UIComponent.
For that use the following code.
UIComponent comp = actionEvent.getComponent();
oracle.adf.view.rich.util.ResetUtils.reset(comp);
here comp is the component binding .
Comments
Post a Comment