Jpanel overlap Forms Component

Hi all,
I'm using forms 11g, now i try to add one JPanel (Swing) to DrawPanel (Oracle forms DrawPanel), I add the panel first after that I add other Forms component such as VTextField, VBUtton, after that I change Z-order of JPanel to last index (because i want Jpanel will be overlapped by other forms components) .
But the result always show the JPanel overlap Form Component.
For more detail you can view this link : [http://stackoverflow.com/questions/7764532/jpanel-overlap-other-components]
Thanks in advance
Best regards,
Edited by: 891733 on 21:05 16-10-2011

Hi,
When i change JPanel to Forms DrawnPanel, i still got this problem,
And i've already added this post to Java Programming Thread
jpanel overlap Forms Component

Similar Messages

  • Error when creating a Report with Form component

    I am trying to create a new report with form component but when I try to choose the Table/View name I get a web error "404 web not found". I know for a fact that the list is working because I see the list when I create a "simple form". Is this a bug or i need to do something to get it working? thanks

    419008,
    It is a bug that has been identified and will be corrected in an HTML DB patch. There is nothing you can do to correct it.
    This bug is specific to Internet Explorer and utf-8 encoding. It is not a bug with IE, it is a bug with how we handle this for IE.
    Joel

  • Passing Parameters to Form Component

    Can I pass parameters to a form component through the URL...like PORTAL30.wwa_app_module.new_instance?p_moduleid=1098075940 is the link to get the form ..I want to pass a parameter along with this.This is to pass the parameter to a stored procedure on which the form is based.
    null

    Yes you can pass parameters.. here's a quick tutorial..
    There are 2 ways to link to a 3.0 form from another component:
    1. "Query links", in this mode user can specify any conditions for the form and when the form
    gets these values it will execute the query using passed conditions and if a record found we will bring the form in the update mode so that record can be updated, if multiple records found all set of the records will be returned, and user can use "Next" and "Previous" buttons to navigate in the set.
    If none of the records in the table satisfy the criteria, the form will be shown in insert mode with all fields empty.
    Parameter | Condition | Static Value | or | Column Name
    EMPNO | | >= | | 7900 | | | | | |
    ENAME | | | | | | | | | |
    JOB | | | | | | | | | |
    MGR | | | | | | | | | |
    HIREDATE | | | | | | | | | |
    SAL | | | | | | | | | |
    COMM | | | | | | | | | |
    DEPTNO | | | | | | | | | |
    showheader | | | | | | | | | |
    _rowid | | | | | | | | | |
    Resulting Link Example:
    portal30.wwa_app_module.link?
    p_arg_names=_moduleid&p_arg_values=1060253649
    &p_arg_names=_sessionid&p_arg_values=
    &p_arg_names=EMPNO&p_arg_values=7900
    &p_arg_names=_empno_cond&p_arg_values=%3E%3D
    2. "Link-to-fill-the-defaults"
    This type of link is similar to WebDB 2.x forms link.
    Take the link above and remove all the conditions and you will get the "defaults" link, we just take whatever you put in the value field and put it in the form field as a default value, no query performed. This type of link should be used in case if the users want to create a new record based on some of existing table data. For example to create another employee record in a department with the same job title and reporting to the same manager.
    Parameter | Condition | Static Value | or | Column Name
    EMPNO | | | | | | | | | |
    ENAME | | | | | | | | | |
    JOB | | | | | | | | JOB | |
    MGR | | | | | | | | MGR | |
    HIREDATE | | | | | | | | | |
    SAL | | | | | | | | | |
    COMM | | | | | | | | | |
    DEPTNO | | | | | | | | DEPTNO | |
    showheader | | | | | | | | | |
    _rowid | | | | | | | | | |
    Resulting Link Example:
    portal30.wwa_app_module.link?
    p_arg_names=_moduleid&p_arg_values=1060253649
    &p_arg_names=_sessionid&p_arg_values=
    &p_arg_names=JOB&p_arg_values=CLERK
    &p_arg_names=MGR&p_arg_values=7902
    &p_arg_names=DEPTNO&p_arg_values=20
    null

  • Form component

    Is there any default Form component to display and navigate records?
    What I like to have is a component just like table on which we can attach/drag a data provider but than for single record display, which first, previous, next and last record navigation buttons.
    I believe this is out-of-the-box available is it?
    I know I can create a form and manually add buttons, but then I have to di this for all single record forms.
    Regards,
    Marcel
    BTW: Congrats on delivering SJSC2. My first impressions are good.

    Hi Marcel,
    Thanks for appreciating JSC 2! We really look forward for your participation here to make this product better!
    And about your Question--
    I guess, you know about the Table component, which makes it ez for the type of databinding and pagination. You could just drop a database table and enable pagination for navigating through the rows. But this one doesn't display a single record in a Form with datacolumns/fields displayed in a vertical fashion.
    But it is still very easy with Creator to build such a form with navigation.
    Please check out the bundled sample application 'Single Page CRUD with Form' which demo's such a functionality. You can get a copy of it by choosing File> New Project> Samples> Single Page CRUD with Form.
    HTH,
    Sakthi

  • Displaying Images In Form Component

    Hi
    How do I display an employee image in a form Componet, if it is located in file server??
    and how do display an employee image in form component
    if it is saved in the Databse ??
    Many Thanks
    null

    Walid,
    If you want to display an image in a form it should be "physically" uploaded to the table on which your form is based. The only supported datatypes now are BLOB and ORDIMAGE (interMedia image).
    Thanks,
    Dmitry

  • SDK 4.5 Form Component and States

    I have created a s:Form component that will be used throughout my application. But FormItems are displayed depending on specific states of the main application file.  I left the s:states element and its s:State children in the main application and just moved the portion of the form that I wanted to become a component.  But I am getting State " " was referenced without being declared in my component mxml file.  When I move my s:states elements from my main application file over to my component mxml file, the form does not react correctly.
    So how do I get my form to correctly react to changing states in the main application???
    Tony
    States elements that are residing in my main application file:
    <s:states>
              <s:State name="home"  />
              <s:State name="searchMedia"  />
              <s:State name="smResults"  />
              <s:State name="lgResults"  />
              <s:State name="addMedia"  />
         </s:states>
    The above states are tied to "navigation" buttons that also live in the main application file.
    Here is the form component that I tried to create, but did not work ("Almost" only works in horseshoes and handgrenades):
    <?xml version="1.0" encoding="utf-8"?>
    <s:Form xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
              xmlns:mx="library://ns.adobe.com/flex/mx">
         <s:layout>
              <s:TileLayout clipAndEnableScrolling="true" orientation="rows"
                        paddingBottom="5" paddingTop="5"
                        paddingRight="5" paddingLeft="5"
                        columnAlign="justifyUsingWidth" verticalGap="6"  />
         </s:layout>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <s:FormHeading label.addMedia="Add Media to Library" label.searchMedia="Search Library"  />
         <s:FormItem label="File Name:">
              <s:layout>
                   <s:HorizontalLayout  />
              </s:layout>
              <s:TextInput  />
              <s:Button includeIn="addMedia" label="Browse"  />
         </s:FormItem>
         <s:FormItem label="Course Contained In:">
              <s:TextInput  />
         </s:FormItem>
         <s:FormItem label="Keyword:">
              <s:TextInput  />
         </s:FormItem>
         <s:FormItem label="Type of Media (.jpg, .psd, etc):">
              <s:TextInput  />
         </s:FormItem>
         <s:FormItem label="Media size" includeIn="addMedia">
              <s:layout>
                   <s:HorizontalLayout  />
              </s:layout>
              <s:TextInput id="horizWidth"  />
              <s:Label text="(width) X "  />
              <s:TextInput id="vertWidth"  />
              <s:Label text="(height)"  />
         </s:FormItem>
         <s:FormItem label.searchMedia="Date (Range) Added:" label.addMedia="Date Added: ">
              <s:layout>
                   <s:HorizontalLayout  />
              </s:layout>
              <mx:DateField id="fromDate" includeIn="searchMedia"  />
              <mx:DateField id="toDate" includeIn="searchMedia"  />
              <mx:DateField id="dateAdded" includeIn="addMedia"  />
         </s:FormItem>
         <s:FormItem id="submitSearch" horizontalCenter="0">
              <s:Button bottom="5" label.searchMedia="Search"
                        label.addMedia="Submit" click="currentState='smResults'"
                        bottom.searchMedia="5" horizontalCenter.searchMedia="0"
                        bottom.addMedia="5" horizontalCenter.addMedia="0"  />
         </s:FormItem>
    </s:Form>
    Did I do something fundamentally wrong???

    Thanks, Andrei!
    Same exact problem here and your suggestion works.
    However, it breaks things visually in terms of UI.
    Will most likely have to address the data provider to limit the data.
    Have you filed a JIRA bug with Adobe?
    https://bugs.adobe.com/jira/browse/
    Vitali

  • Where clause on forms component

    Q- Security - We are creating a form application using the wizards, but only want the user to see their records, we are using portal30.wwctx_api.get_user to get the username (lightweight). Using the forms component wizard how do we specify a where clause ?

    I have 2 solutions to this problem:
    1. Create a view on the base table with a WHERE condition and base your form on that view.
    2. For that field in you form, let's say MY_USER, you specify a default value as
    portal30.wwctx_api.get_user
    and from the "default value type" list you select "function returning varchar", and after that you make that field hidden.
    Hope this will help

  • Active Form Component Rules

    Active Form Component Rules
    Hello,
    Though we upgraded to 2008.3 last November, we haven't used AFC rules so far so i was just curious how AFC rules are coded/implemented ? Do they perform checks using client-side scripting of server-side ?
    Thanks
    Mihir

    think of AFC rules as newScale writing javascript code for you. As a matter of fact its pushe dto the client as a .js file
    You have both client and server side scripts (Data retrieval)

  • Need Help w/Form Component

    running SJSC2U1 on XP
    Need help with using the form and associated components to create a search functionality in a jspf page..
    I have used the form component and attempted to use the properties method="get" action="http://www.aaa.com/query.html" name="getit" etc...
    I am told (error msg) that these methods, etc. are not valid for the "form" component
    Does anyone now how to create a search functionality in a jspf page using components, be it "markup" layoutPanel, Form or whatever..
    a simple example (code) would be great.
    Thanks

    running SJSC2U1 on XP
    Need help with using the form and associated components to create a search functionality in a jspf page..
    I have used the form component and attempted to use the properties method="get" action="http://www.aaa.com/query.html" name="getit" etc...
    I am told (error msg) that these methods, etc. are not valid for the "form" component
    Does anyone now how to create a search functionality in a jspf page using components, be it "markup" layoutPanel, Form or whatever..
    a simple example (code) would be great.
    Thanks

  • Form Component changing the Item Name to match new Column Name

    I have a working Portal Form Component that is associated with a
    particular database table. If for some reason a table column
    name is changed, is there a way to modify the Item in the Form to
    use the new column name?

    I can not guarantee that this will work. But try this:
    1) Create a copy of the form (for backup).
    2) Now edit the original form.
    3) Delete the Item(Database Column Item) that has been renamed.
    4) Now add an item with the same name as that of your new
    database column.
    Pls tell if it worked or not.
    Good Luck,
    Chetan.

  • How to create a component with form component?

    This may sound weird. I want create a new component to let the user input some info and do some action(like send a email to somebody). I want to reuse the existing funcionalities of the form components, like the field validating, email sending action etc. All I need is when the user drag the new component to the parsys, all the predefined fields are there. The form component setting are there, like the element name, tile etc. I don't want the user to edit that. That's all predefined. Is that possible? Where can I store the content data of the form components?
    Thanks,

    I think you should refer
    http://dev.day.com/docs/en/cq/current/developing/developing-forms.html
    http://dev.day.com/docs/en/cq/current/wcm/default_components.html#Form (component)

  • Selecting package for interactive form component

    Hi,
    I placed interactive form component in a view.
    I put FORM1 text in templateSource property.
    It asked me an interface, i give name for interface.
    Then it asked me package. I tryed many package, but it doesn't accept them.
    How can i supply necessary package?
    Thanks.

    Hi,
    After interface selection, it gives message below:
    Object can only be created in SAP package
    and it gets package selection screen.
    For example i selected ZBW package and press save icon, that time it gives message below:
    SAP object SFPF FRM4 cannot be assigned to package ZBW.
    How can it be solved?
    Thanks.

  • Show a form component in a portlet

    I tried the following method to call a component in the show procedure of a portlet:
    PORTAL30.wwa_app_module.link (
    p_arg_names => PORTAL30.wwv_standard_util.string_to_table2('_moduleid:_show_header:_rowid'),
    p_arg_values => PORTAL30.wwv_standard_util.string_to_table2('2755583209:YES:ABCDEFGHIJKLMNOPQR'));
    The result is error message: 302 Found. What does that mean? And how can I show a form component inside a database portlet?
    Thanks,
    Song

    I would rephrase: it's actually a design consideration that the portlet links take you to a separate page. It keeps from hitting the cache/refreshing the rest of the portlets on the screen just for one portlet.
    The folks on this board, myself included, will have trouble answering questions regarding the wiring of declarative portal components since they are outside the PDK.
    I can tell you, though, that the declarative components will not read parameters from the URL as outlined in the PDK. They must be passed using the parameter form.

  • Upgrade Forms Component

    I'm editing a flash template for a client - and AI can't seem to export the movie and make the contact form work. When I open up the default file from the provider - I get this output message:
    Forms Component - Version 0.81
    Couldn't load configuration.
    Even if I don't touch the contact page - it will never work when I export it for the web. I've been talking with the template help-desk for weeks, and they keep saying "it works for us". Well, I'm obviously missing something that they have
    Any ideas and help would be SO helpful. My deadline for this project is Friday.
    Love you forum helpers!
    Calie

    Sounds like they used a component to create the form and you don't have  that componen installed, maybe it's this one:
    http://www.flashloaded.com/flashcomponents/ezform/features/

  • Dynamic Form componants in my jsf page?

    how could i make dynamic form componant in my jsf page ,depend on user inputs or result from database or whatever , where i use sun studio creator ???

    you need to use the "rendered" attribute of the components...
    for example in your jsp put this...
    <h:outputText value="Hello" rendered="#{myBean.renderHello}"/>
    the render hello method looks like this in your backing bean "myBean"
    public boolean getRenderHello() {
    return true; // or false
    if getRenderHello() returns true, "Hello" will be displayed, if getRenderHello() returns false, it will not...
    you can also use expressions in the jsf... for example...
    <h:outputText value="Hello" rendered="#{myBean.someNumber == 5}"/>
    if the "getSomeNumber()" method in your backing bean returns 5 it will be true and "Hello" will show up... otherwise it won't... :)
    Hope this helps...
    -Garrett

Maybe you are looking for

  • Old Version Script Obsoletion

    I have flash 5. I want to continue using it. (I cannot afford to buy a new version) I am used to using "tell target" and other obsolete scripting tools. If I make a website with flash 5 old school scripts, will the Internet continue to play these old

  • Hosting Client Sites with Business Catalyst?

         Do I have to HOST potential client sites with Business Cataylst in order for the forms widget to work? I am very excited about this tool but this is one major issue that I need clarity on that plan old experience and practice will not answer. I

  • Regarding ECC 6.0

    Hi Experts, Program is exeuting syntatically fine, but, when executing its show, time exceed error in ECC 6.0 , initially it is developed in 4.6c. Please, can any one suggest this same code to incorporate in Forall entries.   SELECT abukrs aebeln beb

  • How to create a "cube" that rotates images

    hello Flash, I have seen some web sites that have a "cube" that has images displayed on the face of the cube. And it rotates - most of the ones I have seen rotate continuously. I would like to create a cube, that when I click a buttion (web browser b

  • Unable to configure database for a domain

    When I try to configure the database for example for the WLI domain starting Weblogic Integration database configuration wizard (Start -> Programs -> BEA Weblogic E-Business Platform -> Weblogic Integration 2.1 -> Configure), I'll get the following m