For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
sqldeveloper 4.1.1 new connection "Access" tab missing. I have windows 8.1 64bit. I tried 32bit 64bit office. I tried Windows 64-bit with JDK 8 included, Windows 32-bit/64-bit.
<rich:dragSupport dragIndicator=":indicator" dragType="measure" dragValue="#{measure}"> <f:param name="operator" value="#{aggOp}" /> <rich:dndParam name="label" value="#{measure.name} (#{aggOp})"/> </rich:dragSupport>
//dropped item processors public void processDropSupportTable(DropEvent dropEvent) { if (dropEvent.getDragType().compareTo("measure") == 0) { SOLAPMeasure dragged = (SOLAPMeasure)dropEvent.getDragValue(); FacesContext context = FacesContext.getCurrentInstance(); Map requestMap = context.getExternalContext().getRequestParameterMap(); String tempAggOp = (String)requestMap.get("operator"); System.out.println("dropped: " + dragged.getId() + " named: " + dragged.getName() + " whose operator is: " + tempAggOp); } }