Posts

Showing posts from January, 2013

integrated applications. step by step

http://andrejusb.blogspot.com/2010/02/integration-in-oracle-adf-with-adf-task.html

Some ADF Tips

how to set a background image to a component background-image:url(#{facesContext.externalContext.requestContextPath}/images/globe.png);   Getting the binding container BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();   Getting ADF attribute value from an ADF page definition AttributeBinding attr = (AttributeBinding)bindings.getControlBinding("test"); attr.setInputValue("test");   Executing a MethodAction OperationBinding method = bindings.getOperationBinding("methodAction1"); method.execute(); List errors = method.getErrors(); method = bindings.getOperationBinding("methodAction2"); Map paramsMap = method.getParamsMap(); paramsMap.put("param","value") ; method.execute();    Getting the errors of an iterator String error = iterBind.getError().getMessage(); Refresh an iterator bindings.refreshControl(); iterBind.executeQuery(); iterBind.refresh(DCIteratorBinding.