Jdeveloper - GUI not visible in the visual design editor

Hello everybody!
Actually I'm designing a Java Desktop Application with javax.swing. using JDeveloper 11g Release 1 (Studio Edition Version 11.1.1.3.0, Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660), Java Platform 1.6.0_18 and Oracle IDE 11.1.1.3.37.56.60 on Linux.
My question is related to JDevelopers visual design editor. Most of my forms extend javax.swing.JInternalFrame. Those forms are visible within the visual design editor but for some of my forms I had to create a subclass of JInternalFrame named ITMSInternalFrame.
package itms.view;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JInternalFrame;
public class ITMSInternalFrame extends JInternalFrame {
    private MainWindow mainWindow;
    private JButton btnExit;
    protected static final ImageIcon ICOCOMMIT =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/commit-icon.png"));
    protected static final ImageIcon ICOROLLBACK =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/rollback-icon.png"));
    protected static final ImageIcon ICOINSERT =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/add-icon.png"));
    protected static final ImageIcon ICOUPDATE =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/page-edit-icon.png"));
    protected static final ImageIcon ICODELETE =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/delete-icon.png"));
    protected static final ImageIcon ICOUSER =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/user-icon-16x16.png"));
    protected static final ImageIcon ICOWAPPEN =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/wappen-icon.png"));
    protected static final ImageIcon ICOPRINT =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/printer-icon-16x16.png"));
    protected static final ImageIcon ICOPRINTPREVIEW =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/find-icon.png"));
    protected static final ImageIcon ICOITSET =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/folder-Options-icon-16x16.png"));
    protected static final ImageIcon ICOREALESTATE =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/real-estate-icon-16x16.png"));
    protected static final ImageIcon ICOBUILDING =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/building-icon-16x16.png"));
    protected static final ImageIcon ICOROOM =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/room-icon-16x16.png"));
    protected static final ImageIcon ICOPROCESS =
        new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/process-icon-16x16.png"));
    public ITMSInternalFrame(MainWindow mainWindow, String title,
                             String path) {
        this.mainWindow = mainWindow;
        this.setLayout(null);
        this.setTitle(title);
        setFrameIcon(new ImageIcon(ITMSInternalFrame.class.getResource(path)));
        this.addInternalFrameListener(this.mainWindow);
    public MainWindow getMainWindow() {
        return this.mainWindow;
    public JButton getExitButton() {
        btnExit = new JButton();
        btnExit.setIcon(new ImageIcon(ITMSInternalFrame.class.getResource("grafiken/home-icon.png")));
        btnExit.setToolTipText("Closes this window");
        btnExit.setActionCommand("Exit");
        btnExit.addActionListener(this.mainWindow);
        return btnExit;
}The forms that extend ITMSInternalFrame are not visible within JDevelopers visual editor. It says "No GUI selected. Double click on an item in the Structure Window to see its GUI here" and in the UI - Log it tells me "Unable to instantiate live instance for btnExit; using placeholder object instead."
I've used Google to find an answer and I've read certain tips about it in different forums but non of that used to help me. So please, does anyone of guys around here know what to do to solve this?
I look forward to receiving your advice on this matter.
Yours sincerely.
Florian W.

Hi,
I remember GUI subclasses to be an issue in 10.1.3. Not sure this has been resolved. Best suggestion is to file a service request with support and have them looking at a test case
Frank

Similar Messages

  • Attribute not visible in the Query Designer

    Hi,
    I am not able to see 0BPPartner as attribute of object 0Customer in the Query designer .It is marked as display attribute.For some user its visible & for Some not.
    Please help me its very urgent.
    Thanks & regards,
    Anita

    Hi Anita,
    As you stated earlier that some users are able to see it and some are not then it surely is a Authorization/Profile issue. Speak to the BASIS/person who manages this to resolve the issue.
    Bye
    Dinesh

  • Custom Components not Visible in the Flex Design

    Hi
        I am trying to create a Flex Application to consume a Web service.
         Which DataGrid can i use to get the list of data at runtime.
         The Datagrid component which is available  under Controls in the design is displaying 3 columns and 3 rows by default. But if i use this UI element no.rows and coulmns cannot be changed at runtime.
    So could anybody advice me which datagrid can be used?
    By defalult Flex design has Controls, Layout, Navigators, Charts components
    Could anybody tell me whats Custom Component in the design. becoz i cannot see any of the components under Custom folder.
    Is it a custom developed one or is it a Default like other components ?
    How do I get these components  Customer DataGrid, Video Chat, Yahoo Search, Countries By Group etc.
    Please guide me...
    Thanks & Regards
    Sireesha.
    Edited by: sireesha esukapalli on Dec 1, 2008 1:06 PM
    Edited by: sireesha esukapalli on Dec 1, 2008 1:17 PM

    Hi Daniel,
        Could you please check the below code in MXML.
        I am getting the error as Unexpected paramater "CustomerNo" not found in input arguments.
       What node should be given under <request> tag ? Is it can be any xml node related to customer no? or anyother thing?
        <mx:WebService id="WSCust"
         wsdl="http://ctsintcosnw4.cts.com:8000/sap/bc/srt/rfc/sap/zws_custinfo?sap-client=812&wsdl=1.1 "
        showBusyCursor="true"
         fault="Alert.show(event.fault.faultString)"
         result="onCustResult(event)"
              >
    <mx:operation name="ZBAPI_CUSTOMER_DETAIL2">
         <mx:request>
         <CustomerNo>
              {Cust_no.text}
         </CustomerNo>     
         </mx:request>
    </mx:operation>
    </mx:WebService>
    <mx:Script>
         <![CDATA[
    private function Getcust_data():void
    WSCust.getOperation("ZBAPI_CUSTOMER_DETAIL2").send();
         ]]>
    </mx:Script>
    <mx:Label  text="CustomerNo"  id="lblcustno" />
         <mx:TextInput id="Cust_no" />
    <mx:Button  id="btn_custno" label="Display Customer General Data" click="Getcust_data()" />
    Regards
    Sireesha.

  • JSP - LoadBundle and Component Error in Visual Design Editor

    Hi.
    I've tried to make simple international JSF application. So the first thing to do was to externalize strings from JSP to resources. According to instructions from Java Studio Creator Field Guide Chapter 13:
    http://developers.sun.com/members/promo/jscreator/bookshelf/fieldguide2_preview_13_customizing.pdf
    I added LoadBundle component to my JSP page:
    <f:loadBundle basename="myApp.Bundle" var="messages1"/>
    and set a text property of label component like this:
    <ui:label binding="#{Page1.label1}" id="label1" labelLevel="1"
    style="position: absolute; left: 144px; top: 48px; width: 240px; height: 24px" text="#{messages1.title}"/>
    There is a line in myApp.Bundle.properties file:
    title = Title from resource bundle
    After changing text property of label component to #{messages1.title} I've got a message:
    Component Error
    Cannot display label component in the Visual Design editor.
    Error message from the component: javax.faces.el.PropertyNotFoundException: Error testing property 'title' in bean of type null.
    Exception message:
    javax.faces.el.PropertyNotFoundException: Error testing property 'title' in bean of type null
         at com.sun.faces.el.PropertyResolverImpl.getType(PropertyResolverImpl.java:342)
         at com.sun.rave.web.ui.faces.UIComponentPropertyResolver.getType(UIComponentPropertyResolver.java:298)
         at com.sun.rave.web.ui.faces.DataProviderPropertyResolver.getType(DataProviderPropertyResolver.java:264)
         at com.sun.jsfcl.data.ResultSetPropertyResolver.getType(ResultSetPropertyResolver.java:141)
         at com.sun.rave.jsfsupp.container.DesignTimePropertyResolver.getType(DesignTimePropertyResolver.java:169)
         at com.sun.faces.el.impl.ArraySuffix.getType(ArraySuffix.java:240)
         at com.sun.faces.el.impl.ComplexValue.getType(ComplexValue.java:208)
         at com.sun.faces.el.ValueBindingImpl.getType(ValueBindingImpl.java:350)
         at com.sun.rave.web.ui.renderer.ValueHolderDesignTimeRenderer.encodeBegin(ValueHolderDesignTimeRenderer.java:59)
         at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:683)
    The same problem appears when I open example project from this book:
    Login2I18N-Alt
    It is a bug or am I doing something wrong?
    greatings
    znienacka

    go to Tools/Update Center and download the latest
    version of the components. It will solve the
    problem.Thanks, it works. But there is still one drawback - Visual Designer doesn't show any text inside label. If I remove all strings from JSP to resource file I will get an empty page!
    Is there any solution of this problem?
    znienacka

  • Any add-ons to NetBeans to extend the visual-design capabilities?

    Are they any add-ons to NetBeans that extend the visual-design capabilities?

    Hi,
    I remember GUI subclasses to be an issue in 10.1.3. Not sure this has been resolved. Best suggestion is to file a service request with support and have them looking at a test case
    Frank

  • I updated win7 and now I cant see ff. I have reinstalled it 5 times now. It shows it is running in task manager but it is not visible on the desk top.

    I installed win7 ultimate and then ff. ff worked fine until I installed win7 service pack 1 and all the other updates it recommended. I click to open ff and nothing happens. I look in task manager and it shows it is running. It is not visible on the screen or in the task bar. I have reinstalled a fresh download of it 5 times. I even tried the beta version but still the same problem. I can use explorer and chrome ok but not ff.

    The "System Tray" is located at the very bottom right of your screen and is a list of most/all running applications that will show in this list.
    For your SysFader issue, this "may" be the problem:
    1 Find the "My Computer" desktop icon and right-click it. A pull-down menu will appear. Select "Properties."
    2 Click on the "Advanced" tab. This will load a new page of options.
    3 Select the "Visual Effects" tab at the top of the window and deselect "Animate Windows when minimizing and maximizing," "Fade or slide menus into view," "Fade or slide Tool Tips into view" and "Fade out Menu items after checking."
    4 Click "OK." This will remove most if not all of the Sysfader effects, at the same time correcting related errors that used to come up during opening a new file or program.

  • Payload not visible in the XI monitor

    In my scenario an xml message was successfully reaching its destination. The XI system was upgraded from support pack 13 to support pack 16. After that the process is still working fine as the XML message is still successfully reaching its destination. The issue we have is that the ‘Payload’ is not visible in the last two steps of the monitor. We can see the Payload until ‘Technical Routing’ in the monitor. But ‘Call Adapter’ and ‘Response’ steps do not have payload.
    (TCode: SXMB_MONI)
    when we double click a message we get XML message details and on the left hand side it shows following hierarchy:
    XML Message:
    Receiver Grouping
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Request Message Mapping
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Technical Routing
       -     SOAP Header
       -     SOAP Body
       -     Payloads
    Call Adapter
       -     SOAP Header
       -     SOAP Body
    <b>(( No Payload displayed, but present above!! ))</b>
    Response
       -     SOAP Header
       -     SOAP Body
    <b>(( No Payload displayed, but present above!! ))</b> 
    Any suggestions would be highly appreciated!
    Thanks in advance.
    Faiq

    Hi faiq
    This seems to be the normal behaviour starting with SP13 or 14. There was a discussion about this a while ago and I believe it turned out to be works as designed.
    This is what was posted as final conclusion in Re: SXMB_MONI does not show payload after upgrade to SP15:
    <i>According to SAP (OSS) this is working as designed. Apparently it was an error in the past that the payload was stored in the DB on the ABAP (IE) side when the AE is involved, as it would then be stored twice at DB level. This explains why this is not a problem when e.g. the IDOC adapter is used.
    Anyway, the only way to let the system show the payload in SXI_MONITOR is to set the runtime trace level to 3 (full trace) and parameter logging to 1 (trace switched on).</i>
    regards,
    Peter

  • ESS job created not visible in the list of 'Scheduled Process'

    As a part of data migration , I am required to invoke an ODI scenario using a java program which in turn is invoked by an ESS job.I'm able to do the same using a standalone application created in my jdeveloper.For incorporating this into the Fusion application I created an ADF Model Project in the hcmEss Application and created a sample javaclass and jobdefinition in the project,similar to what i did in my standalone application.
    I have included my job definition in the MarHcmEss and included the MAR file in the EarHcmEss.Also I have given the jazn security for my job,similar to other visible jobs.Still the job that I created is not visible in the list of jobs in the 'Launch ESS Monitoring UI'
    All this i tested using a deployment of hcmEss and hcmTalent Applications into my standalone weblogic server.Is there anything that i might have missed during the process?.I am new to ESS.
    Thanks,
    Ajin

    I'm facing the same issue.
    Also I'm unable to populate the values from the Resource Bundle in the Localization section of Job Definition.
    Any help will be appreciated.
    Thanks,
    Sangita.

  • Static text is not appearing from the form designer

    Hi,
    We are using Adobe Live Cycle designer 6.0 to design print forms.
    The problem we are facing is, sometimes static text element created on the Body Page of the form does not appear at all(when we open the form designer after creating the Static text element), though we can find the static text in XML Source of the form.
    For example, if a text element is created with text "XYZ" on body page, it is not visible on the body page whereas the XML Source  contains "XYZ" in it.
    What can be the problem ?
    Regards,
    V Joshi.

    Hi Nikhil,
    I tried using static text from Standard Library and ISR library too. Still the text disappears when i activate the form.
    More inputs on this will be helpful.
    Also, we are using the Form Designer Version 6.0 which is in-built component of NWDS 2.0.16 installation.
    Regards,
    V Joshi.

  • Hi - I am looking for the Adobe Illustrator 2014 1.2 (or .0.2) bugfix update for Mac - and it is not visible in the Adobe Creative Cloud Packager (Mac version). The only update visible is Illustrator CC 2014.1  - which is what introduced the bugs.

    Hi - I am looking for the Adobe Illustrator 2014 1.2 (or .0.2) bugfix update for Mac - and it is not visible in the Adobe Creative Cloud Packager (Mac version). The only update visible is Illustrator CC 2014.1  - which is what introduced the bugs.
    The only thing that I can think of that might be causing the issues that I have a Mac Mini on Mavericks.
    Dave

    Hi
    I have discovered that my question above is a non-question. A user triggered by looking at the below article about Illustrator 2014 cc 17.0.2
    http://helpx.adobe.com/illustrator/release-note/illustrator-17-0-2-release-notes.html 
    He had recently upgraded from wht we now know is 18.0 to 18.1 which is the latest version. He read the above artic
    le and supposed that it was a bug fix release for his version - because the v17 ov18 number is not often displayed. It is usually just 2014 CC.
    I have asked him to post a bug report about Adobe Illustrator CC 2014.1
    Dave

  • When i try to boot itunes, screen goes black and a message pops up and says not compatible with the visual elements. how do i fix this? itunes wont even open at this point. please help. thanks :)

    When i try to boot itunes, screen goes black and a message pops up and says not compatible with the visual elements. how do i fix this? itunes wont even open at this point. please help. thanks

    Let's first try the following document, only be sure that none of the boxes in the compatibility mode tab are checked (not just the compatibility mode box itself):
    iTunes for Windows: How to turn off Compatibility Mode

  • JComboBox - Bottom border is not visible for the first time

    JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    This happens because the list when dropped down goes out of the frame.
    If have the increased the size of the Frame then i am able to see it,but i dont want to do this.
    I am using jdk1.3.1_02.
    Any Help would be great.
    Please find the code below.
    Thanks,
    Sridhar.
    //file: Lister.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Lister {
        public static void main(String[] args) {
            JFrame frame = new JFrame("Lister v1.0");
            // create a combo box
            String [] items = { "uno", "due", "tre", "quattro", "cinque",
            "sei", "sette", "otto", "nove", "deici",
            "undici", "dodici" };
            JComboBox comboBox = new JComboBox(items);
            comboBox.setEditable(true);
            // put the controls the content pane
            Container c = frame.getContentPane( );
            JPanel comboPanel = new JPanel( );
            comboPanel.add(comboBox);
            c.add(comboPanel, BorderLayout.NORTH);
            c.setBackground(Color.white);
            comboBox.setBackground(Color.white);
            comboPanel.setBackground(Color.white);
            frame.setBackground(Color.white);
            frame.setResizable(false);
            frame.setSize(200, 200);
            frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            frame.setVisible(true);
    }

    Hello,
    try this:JPanel comboPanel = new JPanel(new BorderLayout());Regards,
    Tim

  • Drop down list(JComboBox) - Bottom border is not visible for the first time

    Drop down list(Combo-box) JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    I am using jdk1.3.1_02.
    Did any one face this issue.
    Please let me know.
    Thanks,
    Sridhar.

    I must be a little confused regarding your question.
    You can simply change your code frame.setSize(200, 200); to frame.setSize(400, 400);When you say you are unable to see the border are you specifically talking about the border of the frame or the border of the combo box?
    Lance

  • Supplier not visible in the Purchase Order Menu

    Hi All,
    I have created a Supplier and a Supplier Site from the back end using Supplier Conversion.
    It was successful and I am able to see the customer in the Supplier menu in Payables and Supplier base menu in the Purchasing, but the supplier is not visible in the Purchase Order Menu in Purchasing.
    I have Enabled the following flags in the Supplier Site Level,
                   l_vendor_site_rec.purchasing_site_flag := 'Y';
                   l_vendor_site_rec.pay_site_flag := 'Y';
                   l_vendor_site_rec.rfq_only_site_flag := 'Y';
    What else do I need to enable in Supplier level for the Supplier to be visible for Purchasing.
    Please give me a solution so that I can resolve my issue.
    Thanks in advance.
    Regards,
    Bhaskar.

    Hi,
    You will have to achieve this through APIs, Please do some google and refer Oracle docs.
    Following are some links, which may interest you:
    R12 Oracle Apps: Supplier or Vendor Creation API
    Oracle EBS Technical Step By Step: August 2012
    Hope this helps!
    Best Regards

  • Request not visible in the version management of a Report Program

    Hi,
    We Imported an external request into the SAP System.
    The request was imported successfully and a program already existing is updated with that request,
    The problem is that the request number is not visible in the Version Management of the Report Program, but the other Programs have the request number visible in the version management, we could not find the request number in that  particular program
    We tried reimporting the request but the request is not visible.
    Regards

    Check the transport logs and see if there are any erros/warnings.

Maybe you are looking for

  • Localization strings not showing up in some components: buttons, form headings, menu bars, etc

    Hi, I've set up an application that works fine and I just localized it: english and chinese. I've set up the compiling preferences, created the properties files and loaded them into my components with fx:Metatag. Then I assigned the following to all

  • How to send a Patch Impact report to a user?

    Hi: This is for 12.1.3, 10g on linux. Would please someone tell me how to send a Patch impact report to a user. She doesnot want to go to EBS to look and I asked me to send her a report. I have looked but didn't see anywhere I can do that. Please gui

  • KM Custom Reports - Start Button missing??

    hi all, what could be wrong when, after deploying your report into the portal, you miss the report's start button. this happened to me after deploying a custom report that already worked well (after doing little changes on the code like changing para

  • Upgrade are failed!; WRT54G_v2

    130228_1900est hello, just troed to update FIRMWARE re our WRT54G_v2 current FIRMWARE Firmware Version: v3.37.7 downloaded and tried to run 130228dl_LINKSYS_FW_WRT54Gv4_4.21.5.000_20120220.bin BUT got msg' Upgrade are failed!; WHAT'S WRONG? Thanks, S

  • How to register cwanalysis​.ocx in delphi

    I install lv7.0 professional in my computer,i want to use cwanalysis.ocx in delphi,but when i run my program a period-limited form popup.how can i get rid of it?