Showing posts with label reset value. Show all posts
Showing posts with label reset value. Show all posts

Wednesday, February 26, 2014

Reset Input Text Field ADF

       
RichInputText input = (RichInputText)
JSFUtils.findComponentInRoot(id);
input.setSubmittedValue(null);
input.resetValue(); // input.setValue("") doesn't work here
AdfFacesContext.getCurrentInstance().addPartialTarget(input);