Pressing escape button twice clearing the form

Hello,
I am using Jdeveloper 11.1.1.6 and noticed below issue only with IE browser
- Developed a .jsff page fragment, created a taskflow and dragged taskflow onto the .jspx
- Launched the form , and entered some attributes, by pressing twice 'Escape' button twice, clears the form
Does any one have idea why form get's cleared by pressing twice button ? Appreciate your timely response
Thanks in Advance.

Thanks for your reply.
The field values are getting clearing while swapping between the tabs.
However, when i am hitting the button(first tab) "Get department Info" in the first tab the report is generated with the details..
when i am going back to second tab and after comming back to the first tab, still i could see the report. i dont want the report to be visible when swapping between any tabs..
Please help.

Similar Messages

  • Clearing the forms after default Save Button pressed

    HI,
    in forms 6i how to clear the form after the save button is pressed, ie the form uses default menu and smart bar. the user wants to clear the form once he selects save from the menu or after pressing the save icon...
    any idea...?
    regards
    Kris

    try on-commit trigger on form level through clear_form procedure but cursor remain stay on the same record
    I think your requirement is that when user commits a record a new blank record appear so also add "create_record" procedure ;
    .but u have to apply some logic on that trigger also it ever fires when user edit/insert/delete a record and commit;
    Hope it clears now!

  • My iPod is showing a white screen. I could not see anything. But I can listen to songs by blindly pressing the play button twice. The battery comes only for an hour.? How do I get the display and longer battery?

    Hello Friends,
    I've two iPod Nanos (4th gen - 8GB). I'm facing a severe problem with both of them. For both iPods, I tried to do this method Simultaneously press the top button + home (central) button. But of no use.
    1. My first iPod is showing a white screen. I could not see anything. But I can listen to songs by blindly pressing the play button twice. The battery comes only for an hour.? How do I get the display and longer battery?
    2. My second iPod is facing more severe problem. None of the buttons are working. When I connect it my PC it showing "CONNECTED- eject before disconnecting". But it is not ejecting with all the usual methods. When I manually and physically disconnect it from the PC the same "CONNECTED- eject before disconnecting" is still showing till the battery goes off. After that if i press any button it is showing low battery signal. And when i re-connect it to the PC the same process is repeating. When I tied to restore it to the factory settings I'm getting "Error" report.
    (I'm using windows 7)
    Friends, Please help me with the above problems. It will be a great help.
    Thank You.
    R.SAMALA

    Sounds like some hardware issues, meaning you'll want to take or send the iPods in for service or repairs. You can choose to have Apple do an out of warranty exchange for the prices indicated in the link below or find another third party service perhaps even local to your area.
    http://www.apple.com/support/ipod/service/prices/
    B-rock

  • How to clear the form fields which are not rendered

    I have a creation form. There is a document_type list set up as a partial triger. When user change the document type, only the filed related to that document type will be rendered. This caused a problem when we need to clear the form . The input in the field which is not render won't be cleared when reset button is pressed. Can anybody give a sugestion on how to handle this?
    I tried to use the following function to clear the fields. It does not work since it get the list value before the list value change and clear the fields after the new field rendered.
    public void clear_action(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    System.out.println("test1");
    String coutcase = null;
    if(EL.get("#{bindings.Proxy.inputValue}") != null){
    coutcase = EL.get("#{bindings.Proxy.inputValue}").toString();
    System.out.println(coutcase);
    AttributeBinding a11= (AttributeBinding)getBindings().getControlBinding("INT_FNAM");
    AttributeBinding a12 = (AttributeBinding)getBindings().getControlBinding("INT_LNAM");
    AttributeBinding a13 = (AttributeBinding)getBindings().getControlBinding("TIT_PROG");
    AttributeBinding a14 = (AttributeBinding)getBindings().getControlBinding("T_OF_INT");
    AttributeBinding a15 = (AttributeBinding)getBindings().getControlBinding("NETWORK");
    AttributeBinding a16 = (AttributeBinding)getBindings().getControlBinding("IN_DATE");
    AttributeBinding a17 = (AttributeBinding)getBindings().getControlBinding("PE_FNAM");
    AttributeBinding a18 = (AttributeBinding)getBindings().getControlBinding("PE_IN_LNAM");
    AttributeBinding a19 = (AttributeBinding)getBindings().getControlBinding("WEBSITE");
    AttributeBinding a20 = (AttributeBinding)getBindings().getControlBinding("URL");
    AttributeBinding a21 = (AttributeBinding)getBindings().getControlBinding("INT_DATA");
    AttributeBinding a22 = (AttributeBinding)getBindings().getControlBinding("D_ACCESS");
    AttributeBinding a23 = (AttributeBinding)getBindings().getControlBinding("CASE_NUM");
    AttributeBinding a24 = (AttributeBinding)getBindings().getControlBinding("COURT");
    AttributeBinding a25 = (AttributeBinding)getBindings().getControlBinding("PLAIN");
    AttributeBinding a26 = (AttributeBinding)getBindings().getControlBinding("DEFEN");
    if(coutcase.equals("Interview")) {
    a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);
    /*a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);
    a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);*/
    } else if(coutcase.equals("Internet")){
    /*a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);*/
    a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);
    /*a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);*/
    } else{
    /*a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);
    a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);*/
    a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);
    }else{
    System.out.println("coutcase is null");
    }

    Hi,
    The easiest way to modify the screens in the Std transactions using ITS is to modify the ITS templates corresponding to that transaction.
    E.g In you case,there will be a ITS service corresponding to the ESS transaction.This ITS service will have  number of HTML templates which will actually correspond to the diffrent screens in the Trascn.What you need to do is find out the HTML template in the ITS service which corresponds to the screen(which you want to modify) in the STd transacn.To do this ,the easiest way is to right click on that Web page and say VIEW SOURCE.It will show you a HTML code with the ITS service name and the template which is being used for that particular screen.
    So after you find out the correct HTML template to be modified,you can simply hide the fields by putting the HTML code lines in between the symbols
      <!   and  -->
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • CFDiv - clearing the form after submission

    I am using cfdiv with a data entry form and on submission writes the values to a db,  works great, but, how can I clear the form after submission?
    reloading the page loads it in the cfdiv.
    TIA
    Jbird

    To where are you submitting this form?  Also, are you submitting as a get or a post?

  • YouTube requires me to press "back" button twice to return to a previous page

    Hi!
    FF consistently and across OSes(I use several, mostly Linux distros) fails to simply go back tot he prior page when I press the browser's "back" button. It's done this for months. Completely resetting FF doesn't work, nor does clearing the cache and restarting it manually.
    This is a very irritating problem, especially since I prefer FF so strongly over any other browser and don't want to have to hit back twice every time I want to return to a play list/etc. To clarify, it simply reloads the page/video I'm currently on, then finally does what I want it to after 2 clicks of the "back" button. For someone that needs YouTube for work purposes as well as for the sake of a great many tutorials, this needs resolution ASAP.
    Thanks in advance for any help! I feel I've probably isolated the issue enough that it's very unlikely to be a problem with my OS or malware.
    What's the most likely culprit here?
    I should also mention that this happens not only across OSes, but on both a Lenovo G770 laptop and a AMD FX-8350 16GB RAM desktop PC I built very recently.

    Please also see youtube's support. However if there is an issue with the back button for a specific site, please check the cookie settings for the site.
    *[[Delete cookies to remove the information websites have stored on your computer]]
    *[[Cookies - Information that websites store on your computer]]

  • Dynamic table & More No of buttons addition to the form...

    Hi Friends,
    I have following issues with my form in webdynpro abap.
    1. I have created a main node called ZKPS_TEST and under that I have included three nodes and two attributes.
        the three nodes are as follows:
    TIME_DATA With cardinality 1..1 --> to upload a row
    TIME_SHEET_DATA with cardinality 1..n --> Dynamic Internal table rows
    TIME_COST_DATA with cardinality 1..n --> Dynamic Internal table rows.
    I have created an interface and mapped to the form.
    When I click on Insert Row Button i am getting a dump saying "Number of Elements of the Collection of Node MAIN.1.ZKPS_TEST Violates the Cardinality.". Please guide me how to solve this error.
    2. I have to create three more buttons onto the form as follows:
       a. Save button to save the entered data
       b. Submit button to submit for approval.
       c. Total button to validate the total hrs entered on the form.
       As the submit action is already used for Insert Row button. How can i create these three buttons and where should write code for the same.
    Please do the needful at the earliest.
    Thanks in advance.
    Regards,
    Phani Shankar.K

    HI Phani,
    Try this one...
    In ur form keep two buttons.. ADD and SUBMIT..
    in the *ADD* button's javascript code add the following,
    subformname.tablename.rowname.addInstance(1);
    status.rawValue = "ADD";
    in *SUBMIT* button's javascript code,
    status.rawValue = "SUBMIT";
    then, in ur *onactionsubmit*, add the following with ur code (hope u r following my previously posted code..
    data:  lt_eban type wd_this->elements_table,
              wa_eban like line of lt_table.
    * get single attribute
      lo_el_main->get_attribute(
        exporting
          name =  `STATUS`
        importing
          value = lv_status ).
    call method lo_nd_table->get_static_attributes_table
       importing
         table = lt_table.
    if lv_status = 'ADD'.
       append wa_table to lt_table.
       clear: wa_table.
    call method lo_nd_table->bind_table
       exporting
         new_items = lt_table.
    clear lv_status.
    elseif lv_status = 'SUBMIT'.
    lo_el_table = lo_nd_eban->get_element(  ).
    loop at lt_el_table into lo_el_table.
       lo_el_table->get_static_attributes(
          importing
           static_attributes = ls_table ).
           append ls_table to lt_table.
    endloop.
    endif.
    regards,
    *Surya*

  • How can I clear the form ?

    Hi
    I have two input_text field in the form.
    <h:input_text id="productid" value="#{productBean.productId" required="true">
    </h:input_text>
    <h:input_text id="productName" value="#{productBean.productName" required="true">
    </h:input_text>
    <h:command_button id="search" action="search" value="Search" actionListener="#{productBean.searchDatabase}" type="submit" />
    <h:command_button id="clear" action="clear" value="Clear" actionListener="#{productBean.resetResult} " type="submit" />
    I don't want clear button to validate the required field. If I change type="reset" then it just reset the form to old values. I need to clear the search results stored in productBean.
    Is there any way to invoke the action event with reset button?
    Thanks

    Hi
    I have two input_text field in the form.
    <h:input_text id="productid"
    value="#{productBean.productId" required="true">
    </h:input_text>
    <h:input_text id="productName"
    value="#{productBean.productName" required="true">
    </h:input_text>
    <h:command_button id="search" action="search"
    value="Search"
    actionListener="#{productBean.searchDatabase}"
    type="submit" />
    <h:command_button id="clear" action="clear"
    value="Clear"
    actionListener="#{productBean.resetResult} "
    type="submit" />
    I don't want clear button to validate the required
    field. If I change type="reset" then it just reset the
    form to old values. I need to clear the search results
    stored in productBean.
    Is there any way to invoke the action event with reset
    button?
    Thanks
    Leave your "clear" button as type="submit", but add the attribute immediate="true" to it, along with an action expression that points at a method in your backing bean (maybe something like action="#{productBean.clear}") that is implemented like this:
      public Strng clear() {
        setProductId("");
        setProductName("");
        return (null); // Redisplay current page
      }Because of immediate="true", this action will be invoked immediately (that is, in Apply Request Values phase), after which JavaServer Faces will call Render Response phase to redisplay the current page. This bypasses things like validations and the normal search that your "search" button would do.
    The same general approach works for "cancel" buttons as well.
    Craig McClanahan

  • How to clear the form after save?

    Hi,
    My environment is JSF1.2 and Hibernate3. Scope of my bean is request level. On JSF form where I press the save button, data is saved in the database and form is empty for new record.
    I do not want to call method resetMe() because I have many beans with 10-20 fields per bean. I don't want to write such method again and again.
    Can you please help me for better solution?
    Here is my bean:
    package test.bean;
    import java.io.Serializable;
    import javax.faces.event.ActionEvent;
    import test.hib.CountryHome;
    public class Country implements Serializable {
         private Integer cPk;
         private String cName;
         private String cDesc;
         public Country() {
         public Integer getcPk() {
              return cPk;
         public void setcPk(Integer cPk) {
              this.cPk = cPk;
         public String getcName() {
              return cName;
         public void setcName(String cName) {
              this.cName = cName;
         public String getcDesc() {
              return cDesc;
         public void setcDesc(String cDesc) {
              this.cDesc = cDesc;
         public void save(ActionEvent ae) {
              CountryHome ch = new CountryHome();
              ch.save(this);
              this.resetMe();
         private void resetMe() {
              this.setcPk(null);
              this.setcName(null);
              this.setcDesc(null);
    }My database/hibernate class with save operation:
    package test.hib;
    import org.hibernate.SessionFactory;
    import test.bean.Country;
    import test.helper.HibernateUtil;
    public class CountryHome {
         private SessionFactory sf = HibernateUtil.getSessionFactory();
         public void save(Country instance) {
              sf.getCurrentSession().beginTransaction();
              sf.getCurrentSession().saveOrUpdate(instance);
              sf.getCurrentSession().getTransaction().commit();
    }My JSF page:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <%@ taglib prefix="f"  uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h"  uri="http://java.sun.com/jsf/html"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Country Form</title>
    </head>
    <body>
    <f:view>
         <h:form>
              <h:panelGrid border="1" columns="2">
                   <h:outputLabel value="Name: "></h:outputLabel>
                   <h:inputText value="#{country.cName}"></h:inputText>
                   <h:outputLabel value="Description: "></h:outputLabel>
                   <h:inputTextarea value="#{country.cDesc}"></h:inputTextarea>
              </h:panelGrid>
              <h:commandButton value="Save" actionListener="#{country.save}"></h:commandButton>
         </h:form>
    </f:view>
    </body>
    </html>

    What you are doing now will not create a maintenance nightmare in future, if you are doing it in a framework oriented fashion. We have done something similar in one of our biggest project( around 50 developers working 3 years). What we have done is, created a method resetBean() in our abstract backing bean like:
    public void resetBean(){
                        // doing nothing
    We didn’t make it abstract, so that all backing bean in our project need not implement this method. Those who want to use this method can implement this method to reset the values in the backing bean.
    One thing we achieved by doing this is, we don’t let each developers do the reset logic in different ways.
    One of the advantages of this over the redirect is, you have full control over resetting the form. Which means, sometimes, we may need partial resetting of the form.
    Thanks and regards
    Rick

  • Floating Button Panel on the form

    Hi,
    I want to design a FLOATING Panel for the action buttons on the form. So if i scroll form up or down ,The panel should float on different pages but at the bottom of the page.
    I am designing above action buttons: Panel so that user sees these functionalities on every page at the bottom where he scrolls.
    Please let me know your ideas how do i do it.
    Please let me knw if I could explain my requirement clearly.
    Regards
    Sunil

    OK. I have a working example that you can find here:
    http://www.fieldeffecttechnologies.com/AdobeForums/FloatingSubform.pdf
    Here is the code I put in the docReady event of the Main subform (any object will do):
    global.timer = app.setInterval(
    "var curView = eval(this.viewState.toSource());"+
    "yPos=curView.pageViewY>=0 ? (curView.pageViewY+4)*.655/curView.pageViewZoom:0;"+
    "xfa.form.form1.pageSet.Page1.all.item(curView.pageViewPageNum).Buttons.y = yPos+\"pt\";",1000);//Change the refresh rate here (in milliseconds)
    Every second the above code determines where the top of the form view is and based on the zoom, it determines the y coordinate for the 'floating' object to move. The .655 constant is what I've determined to be the relationship between the pageViewY's units and point units.
    The object that this code is moving is a subform with buttons that is on masterpage Page1.
    This particular code keeps the buttons at the top. It would take a little while longer to keep them at the bottom, since you'd really have to account for zoom and the page size. Probably getting the media box quads relative to the application window (haven't looked too far into it).
    Also, there is a stop button to stop the timer with the same code in the docClose event of the Main subform:
    app.clearInterval(global.timer);
    delete global.timer;
    Of course the annoying part is having the hourglass appear every once and awhile but unless the event model is updated in future releases to include scrolling, this is how it has to be done.
    Hope this helps you and others. I had fun figuring it out.
    Kyle

  • Clearing the FORM after SAVING the data

    Question 1:
    I've got a form that is built based on a table. When I enter the data and click on the save button, the FORM doesn't clear for me to enter the data for the next record. Where and how can I set up a process so that the form clears after the data is saved?
    Quesstion 2:
    I've got a form that is built based on a table. The table has 10 fields where one of the fields is a FK. I want all 10 fields to be on the form. I want the FK to be a select list where the display value is a description and a return value is an ID. I have picked the correct fields for display value and return value. However, when the data is saved, the return value is not stored in the table field. The field is bank. Any idea why this is happening?

    Hi,
    The simplest way to clear the items for a page is to add the page number in to a Branch that is triggered by your Create/Save button - check your branches to see which one is linked to this button and enter the page number in the Clear Cache setting. If you created the form using a wizard, you should, however, already have a "reset page" page process that does this for you - if you haven't got this, then either update the branch or create a new "Session State" process that clears the cache.
    For your second question, the data will be saved provided the page item is correctly linked to the table's field and you have "Process Row of tablename" set up correctly. If you have a "Process Row..." process, check the required settings in the "Source: Automatic Row Processing (DML)" section as these identify the table and its Primary Key. If you don't have one, you can create a new "Data Manipulation" page process to do this. In the page item, check that you have "Source Used" set to "Always, replacing any existing value in session state", "Source Type" set to "Database Column" and "Source Value or Expression" set to the table field's name.
    One thing to check as well is, if you already have a "reset page" process, make sure it is after all other processes - change the sequence number if necessary.
    Andy

  • How do I make a submit button that sends the form to an email address?

    I can see how to link to an email which then opens up an email someone could attach the form to. But I do not see how to make a button that automatically sends the form to an email address. Can someone provide assistance? Thanks!

    I have the same question. You'd thing this would be a no brainer requirement for a form.

  • HT201335 I tapped the home button twice, saw the apps, scrolled left to right, still do not see the air play icon

    I am trying to mirror my iPad 2 with my Apple TV .  I hit the home button twice, scrolled through the app icons but still do not see the air play icon? I did check to confirm that both devices are on the same network.

    Yes they are both on the same network and I enabled air play on the TV. I finally located the icon on my iPad last night and succeeded in mirroring. It seems the instructions from apple were confusing me. They said tap the home button twice and then scroll to the right. The icon however is on the left side of the screen and shows as what I would call a button as opposed to an icon, located among the buttons of a mini player. Anyway, found it last night and now am enjoying the mirroring feature. Thanks for all the help.

  • Sortingtable clears the forms when the column is clicked for the first time

    Hi All,
    I have text fields which will take the conditions for search and result will be displayed in the sorting table of the same form,
    When the search is done for the first time the result is shown in the sortingTable, but when we click any of the column to get it sorted it clears out the whole screen and shows only the search text fields.But when we do a search again in the same form there after the sort works.it does not clear out.
    This happens for the first search after the form is loaded for the first time from the workflow
    appreciate any solution or suggestion
    Thanks
    Pratheep

    Thanks for your reply, it did not work even after setting the sortEnable,
    The issue i find is when the any column is clixked for sorting for the first time all the form variables even if it is under Expansion is lost, but when we do the search again (even with different criteria) the same page and hit the sort column again the form variables are retained

  • How to create a submit by email button that emails the FORM AND DATA

    I have Adobe Acrobat Pro 8.  I've created a fillable form that can be fillable and saved in Adobe reader.  How do I add a submit by email button that will send me the form with the data?  Right now I am only getting the data.  I need the form with the data.
    Thank you in advance, Rob

    When you set up a submit form action, you have the option of choosing the form data (FDF, XFDF, HTML) or the complete PDF. Choose the latter. For this to work with Reader (prior to 11), the document has to be Reader-enabled, which you do by selecting: Advanced > Enable Usage Rights in Adobe Reader

Maybe you are looking for