Skip to Main Content

SQL Developer

Announcement

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 no access tab

2981922Jun 30 2015 — edited Jul 1 2015

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.

Comments

843844
To solve this problem I used <f:param> instead of actionParam:

On the drag support component:
<rich:dragSupport dragIndicator=":indicator" dragType="measure" dragValue="#{measure}">
                                                    <f:param name="operator" value="#{aggOp}" />
                                                    <rich:dndParam name="label" value="#{measure.name} (#{aggOp})"/>
</rich:dragSupport>
On the backing bean:
    //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);
        }
    }
1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jul 29 2015
Added on Jun 30 2015
2 comments
6,295 views