When tab out of an autoSubmit field I lose focus.

Hello all!
I'm using jDev 11.1.2.1.0
I'm facing the following situation. In the employees VO there is a transient attribute which is actually the salary * commissionPct.
In the jspx, in order to make things interactive, salary and commisionPct have autoSubmit=true. When I change either of the fields the transient column refreshes accordingly. Up to here everything is fine.
The problem is that when I make a change to either of these fields and tab out the focus is lost. This is very annoying. It happens only in salary and commissionPct fields.
Is there any way to avoid this??
Thanks a lot!
-apostolos

Sudipto thanks for the link. Very useful.
I actually use PPR in the employee Iterator, and this is because there is a master-detail functionality in the page. Suppose I have a case similar to department-employees case.
If I remove the PPR then the master and detail are not synchronized.
At the bottom you see the sums filed which is actually the product of salary and commissionPct.
<af:table value="#{bindings.EmployeesVO1.collectionModel}"
                          var="row" rows="#{bindings.EmployeesVO1.rangeSize}"
                          emptyText="#{bindings.EmployeesVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.EmployeesVO1.rangeSize}"
                          rowBandingInterval="0"
                          selectedRowKeys="#{bindings.EmployeesVO1.collectionModel.selectedRow}"
                          selectionListener="#{bindings.EmployeesVO1.collectionModel.makeCurrent}"
                          rowSelection="single" id="t1">
                    <af:column sortProperty="#{bindings.EmployeesVO1.hints.EmployeeId.name}"
                               sortable="true"
                               headerText="#{bindings.EmployeesVO1.hints.EmployeeId.label}"
                               id="c1">
                        <af:inputText value="#{row.bindings.EmployeeId.inputValue}"
                                      label="#{bindings.EmployeesVO1.hints.EmployeeId.label}"
                                      required="#{bindings.EmployeesVO1.hints.EmployeeId.mandatory}"
                                      columns="#{bindings.EmployeesVO1.hints.EmployeeId.displayWidth}"
                                      maximumLength="#{bindings.EmployeesVO1.hints.EmployeeId.precision}"
                                      shortDesc="#{bindings.EmployeesVO1.hints.EmployeeId.tooltip}"
                                      id="it1">
                            <f:validator binding="#{row.bindings.EmployeeId.validator}"/>
                            <af:convertNumber groupingUsed="false"
                                              pattern="#{bindings.EmployeesVO1.hints.EmployeeId.format}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.EmployeesVO1.hints.FirstName.name}"
                               sortable="true"
                               headerText="#{bindings.EmployeesVO1.hints.FirstName.label}"
                               id="c2">
                        <af:inputText value="#{row.bindings.FirstName.inputValue}"
                                      label="#{bindings.EmployeesVO1.hints.FirstName.label}"
                                      required="#{bindings.EmployeesVO1.hints.FirstName.mandatory}"
                                      columns="#{bindings.EmployeesVO1.hints.FirstName.displayWidth}"
                                      maximumLength="#{bindings.EmployeesVO1.hints.FirstName.precision}"
                                      shortDesc="#{bindings.EmployeesVO1.hints.FirstName.tooltip}"
                                      id="it2">
                            <f:validator binding="#{row.bindings.FirstName.validator}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.EmployeesVO1.hints.LastName.name}"
                               sortable="true"
                               headerText="#{bindings.EmployeesVO1.hints.LastName.label}"
                               id="c3">
                        <af:inputText value="#{row.bindings.LastName.inputValue}"
                                      label="#{bindings.EmployeesVO1.hints.LastName.label}"
                                      required="#{bindings.EmployeesVO1.hints.LastName.mandatory}"
                                      columns="#{bindings.EmployeesVO1.hints.LastName.displayWidth}"
                                      maximumLength="#{bindings.EmployeesVO1.hints.LastName.precision}"
                                      shortDesc="#{bindings.EmployeesVO1.hints.LastName.tooltip}"
                                      id="it3">
                            <f:validator binding="#{row.bindings.LastName.validator}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.EmployeesVO1.hints.Salary.name}"
                               sortable="true"
                               headerText="#{bindings.EmployeesVO1.hints.Salary.label}"
                               id="sal">
                        *<af:inputText value="#{row.bindings.Salary.inputValue}"*
                                      label="#{bindings.EmployeesVO1.hints.Salary.label}"
                                      required="#{bindings.EmployeesVO1.hints.Salary.mandatory}"
                                      columns="#{bindings.EmployeesVO1.hints.Salary.displayWidth}"
                                      maximumLength="#{bindings.EmployeesVO1.hints.Salary.precision}"
                                      shortDesc="#{bindings.EmployeesVO1.hints.Salary.tooltip}"
                                      id="it6" autoSubmit="true">
                            <f:validator binding="#{row.bindings.Salary.validator}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.EmployeesVO1.hints.CommissionPct.name}"
                               sortable="true"
                               headerText="#{bindings.EmployeesVO1.hints.CommissionPct.label}"
                               id="comm">
                        *<af:inputText value="#{row.bindings.CommissionPct.inputValue}"*
                                      label="#{bindings.EmployeesVO1.hints.CommissionPct.label}"
                                      required="#{bindings.EmployeesVO1.hints.CommissionPct.mandatory}"
                                      columns="#{bindings.EmployeesVO1.hints.CommissionPct.displayWidth}"
                                      maximumLength="#{bindings.EmployeesVO1.hints.CommissionPct.precision}"
                                      shortDesc="#{bindings.EmployeesVO1.hints.CommissionPct.tooltip}"
                                      id="it7" autoSubmit="true">
                            <f:validator binding="#{row.bindings.CommissionPct.validator}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.EmployeesVO1.hints.Sums.name}"
                               sortable="true"
                               headerText="#{bindings.EmployeesVO1.hints.Sums.label}"
                               id="c9">
                        *<af:inputText value="#{row.bindings.Sums.inputValue}"*
                                      *label="#{bindings.EmployeesVO1.hints.Sums.label}"*
                                      *required="#{bindings.EmployeesVO1.hints.Sums.mandatory}"*
                                      *columns="#{bindings.EmployeesVO1.hints.Sums.displayWidth}"*
                                      *maximumLength="#{bindings.EmployeesVO1.hints.Sums.precision}"*
                                      *shortDesc="#{bindings.EmployeesVO1.hints.Sums.tooltip}"*
                                      *id="it8">*
                            *<f:validator binding="#{row.bindings.Sums.validator}"/>*
                        *</af:inputText>*
                    </af:column>
                </af:table>Edited by: apostolosk on May 2, 2012 3:19 PM

Similar Messages

  • When filling out a form, some fields copy to others when I tab to the next. How can I make this stop?

    When filling out a form, some fields copy to others when I tab to the next. How can I make this stop?

    You can't using Adobe Reader. It looks like whomever created the form used the same identifiers (names) for various fields. Each field with the same name will populate with the information used in another field of the same name. This is intentional.
    Normally when I see this, it tells me that someone created an initial field then copy/pasted it to make additional fields but forgot to change the names.

  • When typing out emails on ipad, screend I lose the message I am typing. Does anyone know what the problem can be?

    When typing out emails on ipad, screend I lose the message I am typing. Does anyone know what the problem can be?

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Lose focus when tabbing out of autoSubmit text box in IE

    Hey,
    Using JDEV 11.1.1.4 I have a problem with tabbing from one textbox to another textbox in IE. Both text boxes have autoSubmit=true and to reproduce the problem it's like so:
    I type a value or edit the existing one into text box 1 and press Tab. The submit is done and focus is given to the second text box but only momentarily before it loses focus. The focus then is given to the window it would appear, because if I press Tab again it begins from the top of the page. This is only happening in IE (v8 is all I have tried so far). This ONLY happens when the value of the second box is null. If it has a value all works fine.
    I tried implementing various solutions including using the ExtendedRenderKitService to write javascript to the client from the bean to set focus on the text box after the partial render. The javascript is called and focus is set but then something else calls blur on it afterwards. I have verified this by putting a blur event listener on it and it gets called after I set focus on it from my own javascript!
    Has anyone experienced something similar? Just to note: It only happens in IE, and it only happens when the second text box is empty.
    Thanks,
    Ross

    Hey John,
    In reply to your message
    1). Tried on 11.1.1.6 to see if the issue is still there?Not really an option to try and upgrade and test if it works there.
    2). Made a simple test case removing as many variables as possible (e.g. do a simple screen with no DB interaction and only two fields) to see if it reproduces or it's something with your screen?Tried this an it works fine which means it is something unique to my code.
    3). Filed an SR at https://support.oracle.com with your test case
    As above it looks like it's not a problem with ADF so I will keep looking at it.

  • How to fire valueChangeEvent when tabs out for inputComboboxListOfValues

    Hi,
    Env: JDev 11.1.1.4 and ADF.
    In my page it has one inputComboboxListOfValues field, it can be entered into a new value or select one from LOV, now I met one issue that when enter into a new value and tabs out, it will open search popup window, but if I close popup window(ok or close button), it will return and lose focus and it can't fire valueChangeEvent, but in valueChangeListener() I need to enable/disable other fields. (autoSubmit="true")
    <af:inputComboboxListOfValues id="ToPlanId"
            popupTitle="Search and Select: #{bindings.CopyPlanName.hints.label}"
            value="#{bindings.CopyPlanName.inputValue}"
            label="#{bundle.PLAN_NAME}"
            model="#{bindings.CopyPlanName.listOfValuesModel}"
            required="false" showRequired="true"
            columns="#{bindings.CopyPlanName.hints.displayWidth}"
            shortDesc="#{bindings.CopyPlanName.hints.tooltip}"
            autoSubmit="true" immediate="false" maximumLength="10"
            binding="#{backingBeanScope.CopyPlanBean.destPlanName}"
            valueChangeListener="#{backingBeanScope.CopyPlanBean.destPlanNameChanged}"
            visible="false" partialTriggers="FromPlanType FromPlanName">
    </af:inputComboboxListOfValues>I searched all forums and docs and can't find any guide for that, so my question is:
    1) if ADF supports that use "Tab" key can fire valueChangeEvent? if so, what's wrong with my code?
    2) if not support, how can I fix this issue?
    thanks,
    zeroxin

    Hi,
    refer this code,
    Page code
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:resource type="javascript">
            function onLovValueTabbedOut(evt) {
                var it4 = evt.getSource().findComponent('it4');
                AdfCustomEvent.queue(it4, "onLovValueTabbedOut",
                    'key1' : 'val1',
                    'key2' : 'val2'
    true);
          </af:resource>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputComboboxListOfValues id="type1Id"
                                            popupTitle="Search and Select: #{bindings.Type1.hints.label}"
                                            value="#{bindings.Type1.inputValue}"
                                            label="#{bindings.Type1.hints.label}"
                                            model="#{bindings.Type1.listOfValuesModel}"
                                            required="#{bindings.Type1.hints.mandatory}"
                                            columns="#{bindings.Type1.hints.displayWidth}"
                                            shortDesc="#{bindings.Type1.hints.tooltip}">
                <f:validator binding="#{bindings.Type1.validator}"/>
                <af:clientListener method="onLovValueTabbedOut" type="blur"/>
              </af:inputComboboxListOfValues>
              <af:inputText value="#{bindings.RowID.inputValue}"
                            label="#{bindings.RowID.hints.label}"
                            required="#{bindings.RowID.hints.mandatory}"
                            columns="#{bindings.RowID.hints.displayWidth}"
                            clientComponent="true"
                            maximumLength="#{bindings.RowID.hints.precision}"
                            shortDesc="#{bindings.RowID.hints.tooltip}" id="it4">
                <f:validator binding="#{bindings.RowID.validator}"/>
                <af:serverListener type="onLovValueTabbedOut"
                                   method="#{bean1.onTabbedOut}"/>
              </af:inputText>
              <f:facet name="footer">
                <af:panelGroupLayout layout="horizontal" id="pgl1">
                  <af:commandButton actionListener="#{bindings.First.execute}"
                                    text="First"
                                    disabled="#{!bindings.First.enabled}"
                                    partialSubmit="true" id="cb2"/>
                  <af:commandButton actionListener="#{bindings.Previous.execute}"
                                    text="Previous"
                                    disabled="#{!bindings.Previous.enabled}"
                                    partialSubmit="true" id="cb3"/>
                  <af:commandButton actionListener="#{bindings.Next.execute}"
                                    text="Next" disabled="#{!bindings.Next.enabled}"
                                    partialSubmit="true" id="cb4"/>
                  <af:commandButton actionListener="#{bindings.Last.execute}"
                                    text="Last" disabled="#{!bindings.Last.enabled}"
                                    partialSubmit="true" id="cb1"/>
                  <af:commandButton actionListener="#{bindings.Commit.execute}"
                                    text="Commit" partialSubmit="true"
                                    disabled="#{!bindings.Commit.enabled}"
                                    id="cb5"/>
                  <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                    text="Rollback" partialSubmit="true"
                                    disabled="#{!bindings.Rollback.enabled}"
                                    immediate="true" id="cb6">
                    <af:resetActionListener/>
                  </af:commandButton>
                </af:panelGroupLayout>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>Bean code
    package view;
    import oracle.adf.view.rich.render.ClientEvent;
    public class Bean1 {
        public Bean1() {
            super();
        public void onTabbedOut(ClientEvent clientEvent) {
            System.out.println("clientEvent : " + clientEvent.getParameters());
    }doc :
    http://docs.oracle.com/cd/E21043_01/apirefs.1111/e12419/tagdoc/af_serverListener.html
    Cheers!!!
    Regards,

  • LOV not validating from the list when tabbed out

    Hi,
    I have an item attached to an LOV generated dynamically based on another LOV. When I change the value in the parent LOV, and just click on the child item(which still has old value) and tab out, it does not validate from the list which has new values. The old value in the field is actually wrong one. However, it shows new values when I click on list of values for the child item.
    I am also setting the property VALIDATE_FROM_LIST to PROPERTY_TRUE. The code to set_lov_property to the dynamic query is generic and is used by both key-listval and when-new-item-instance triggers. Except in key-listval I added list_values.
    I am using forms 6i version.
    Can any one tell me where I am doing wrong?
    Thanks,

    Neeraja,
    Its because the item is not validating again, as there is no change in its contents. So you have to tell oracle to validate that item. For that in the WHEN_VALIDATE_ITEM trigger of the parent item, write,
    SET_ITEM_PROPERTY('<block_name>.<child_item_name>', ITEM_IS_VALID, PROPERTY_FALSE);So when you tab out from the child item, the oracle will validate that item even if there is no change in the data.
    Regards,
    Manu.
    If my response or the response of another was helpful or Correct, please mark it accordingly

  • Is there a way to keep the ADL open when testing CS5.5 Air apps after it loses focus?

    When I test Air applications (specifically targeting mobile) it seems that when the ADL (Air Debug Launcher) launches, it will automatically terminate the session when I click on anything else other than the ADL window.  I have been trying to use 3rd party application debuggers that provide improved memory diagnostics, but these debuggers only seem to be able to work when the application is launched through the Flash Player and not through the ADL.  Unfortunately, the Air specific code will only work in the ADL.  Is there some way to keep the ADL running even when it loses focus?  I have tried using the ADL from the Flash CS5.5 IDE as well as from the command line and both will terminate upon losing focus.

    - Transfer the app to the computer by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - Connect the iPod to the computer and make a backup by right-clicking on the iPod under Devices in iTunes and selecting Back Up.
    - Restore the iPod from that backup. That should also update the iPod.

  • How to call backing bean method when user tabs out of af:inputListOfValues field

    Hi,
    I am using jdev 11.1.2.4.
    I want to call a backing bean method based on the value selected in the af:inputListOfValues field.
    The requirement is similar as Frank Nimphius-Oracle has demonstrated here  https://blogs.oracle.com/jdevotnharvest/entry/how_to_notify_the_server but with Input List of Values component.
    The fields I want to call method from is
    <af:inputListOfValues id="appealNameId"
                          popupTitle="Search and Select: #{bindings.AppealName.hints.label}"
                          value="#{bindings.AppealName.inputValue}"
                          label="#{bindings.AppealName.hints.label}"
                          model="#{bindings.AppealName.listOfValuesModel}"
                          required="#{bindings.AppealName.hints.mandatory}"
                          columns="#{bindings.AppealName.hints.displayWidth}"
                          shortDesc="#{bindings.AppealName.hints.tooltip}"
                          binding="#{backingBeanScope.backing_Donation.appealNameId}"
                          autoSubmit="true" clientComponent="false">
                          <f:validator binding="#{bindings.AppealName.validator}"/>
                          <af:autoSuggestBehavior suggestedItems="#{backingBeanScope.backing_Donation.onSuggestAppeal}"/>
                          <af:clientListener method="onBlurTxtField" type="blur"/>
    </af:inputListOfValues>
    <af:serverListener type="onBlurNotifyServer"
                       method="#{backingBeanScope.backing_Donation.onBlurNotify}"/>
    as you can see,  af:serverListener is outside the af:inputListOfValues which probably is the reason its not executing this method?
    public void onBlurNotify(ClientEvent clientEvent) {
       // get a hold of the input text component
       RichSelectOneChoice inputTxt =  (RichSelectOneChoice) clientEvent.getComponent();
       //do some work on it here (e.g. manipulating its readOnly state)
       //Get access to the payload
       Map  parameters = clientEvent.getParameters();
       System.out.println("SubmittedValue = "+parameters.get("submittedValue"));
       System.out.println("LocalValue =  "+parameters.get("localValue"));
    I've tried to put serverListener tag inside the <af:inputListOfValues> but getting below error
    "Server Listener is not valid child of Input List of Values"
    any ideas please?
    thanks

    As first, check to see that you are using correct type for af:serverListener (thet one you are queue in the javaScript onBlurTxtField function)
    If still does not work, go to directly to the page source code, and put af:serverListener "by hand", as a child for af:inputListOfValues.
    Because it is possible that these messages are false alarm...

  • [solved] Warcraft 3 freezes when tabbing out and in again

    Hello!
    I'm using dwm and running Warcraft 3 Frozen Throne via Wine is no problem. But when I change the view from i.e. 1 (where Warcraft is running) to 2 and back to 1, the title says "Warcraft III" but the window does not load. When I exit the window, all I got in my terminal is:
    $domac.vex tft
    err:ole:CoCreateInstance apartment not initialised
    fixme:advapi:SetSecurityInfo stub
    fixme:win:EnumDisplayDevicesW ((null),0,0x33f2e8,0x00000000), stub!
    fixme:win:EnumDisplayDevicesW ((null),0,0x33f588,0x00000000), stub!
    fixme:win:EnumDisplayDevicesW ((null),0,0x33f5b8,0x00000000), stub!
    $domac.vex fixme:win:EnumDisplayDevicesW ((null),0,0x33e7e8,0x00000000), stub!
    fixme:msvcr90:__clean_type_info_names_internal (0x150591a0) stub
    alias tft='optirun wine ~/.wine/drive_c/Program\ Files\ \(x86\)/Warcraft\ III/Frozen\ Throne.exe'
    I don't think that is helpful… anyone knows how to fix that problem? Or any suggestions?
    I have no clue…
    (appended HKEY in wine regedit, so that the game runs always with -opengl)
    One more thing… when I run the game with the -window option, I can tab in and out as often as I want but I got huge problems with mouse scrolling ingame (top, down scrolling).
    Thanks for incoming help! :-)
    Cheers
    EDIT: Fixed via winecfg, emulating virtual screen. Warcraft III needs that focus! :D Whatever… it works.
    Last edited by domac (2012-10-07 12:28:42)

    moljac024 wrote:If you're a hardcore gamer then I'll just advise you to keep Windows installed for your gaming needs. There's nothing wrong with dual-booting for that
    I have (nLited) WinXP for games. But WC3 works fine with Wine, that's why I want to play it with Linux. It's faster just click a shortcut without rebooting.
    Rokixz wrote:The best solution for Hardgamers is to buy a xbox360
    I don't prefer consoles. And FPS games (which I play most) are crap on consoles.
    Dheart wrote:Now that I think of...
    Let me guess: You are using hardware acceleration set to "Emulation" and Driver emulation with alsa.
    For some reason WarCraft III doesn't like those (Hardware acceleration in particular...) Set Hardware acceleration to Basic or Full and the game will launch...
    It's set to "Full". And as I said, game launches but freezes after a few secs. But music continues even if a screen is frozen.
    Last edited by Exitium (2008-09-06 10:49:29)

  • How to populate the data in fields if we tab out at one field

    Hi Gurus,
    I am new to OAF Technology and I've new requirement in custom OAF page.
    We have 12 fields like ID, Fname, Lname, Age, Address, Tphone etc..
    If we enter ID in message text input field box and tab out, then it should populate all the remaining fields data by default.
    Could anyone help me regarding this requirement?
    Thanks in Advance
    Sruthi

    Hi,
    Sruthi wrote:
    I am new to OAF Technology and I've new requirement in custom OAF page.
    We have 12 fields like ID, Fname, Lname, Age, Address, Tphone etc..
    If we enter ID in message text input field box and tab out, then it should populate all the remaining fields data by default.
    Could anyone help me regarding this requirement?---MessageTextInput filed set Action property:FirePartialAction and Event:TextInput
    ---Get the Event in co PFR
    if("TextInput".equals(pageContext.getParameter(EVENT_PARAM)))
    AM.setDafultValue();
    ---Write a method in AM
    public void setDafultValue()
    VOImpl vo=getVO1();
    if(vo!= null)
    vo.getCurrentRow().setAttribute("Number1","DefaultValue1");
    vo.getCurrentRow().setAttribute("Number2","DefaultValue2");
    ---Like this u can set default value when tab out.
    Regards
    Meher Irk

  • I need to execute a formatted search when the field loses focus

    Is this even possible?  I do NOT want to force the users to press shift-f2 every time to validate/search on every field on the form.  This is absurd.  How can I trigger a formatted search on a field when it loses focus?
    I tried activating menu item #7425, but it's not executing the one on the field that loses focus, but a different one.  I guess it only works on the active field??
    I tried catching an earlier event, but after it executes the formatted search on the right field, it places the value on whatever field just gained focus instead of the one it was assigned to.
    Any ideas here?  We cannot force our users to press shift-f2 on all these fields!
    The only other idea I have is to not use a formatted search but instead try to create some sort of popup form with a grid and my own query.  There has to be an easier way, right?

    Bryan:
    I use the following on a KeyDown event for when the User tabs out of a field after entering data if the data they entered is not valid.  Perhaps you could try this in the LostFocus event:
    g_B1Connection.Application.SendKeys("+")
    Also, I have used this in the KeyDown event:
    DisplayLookup("txtWO0")
    Private Sub DisplayLookup(ByVal objText As String)
            Try
                WOItem = WOForm.Items.Item(objText)
                WOItem.Click(SAPbouiCOM.BoCellClickType.ct_Regular)
                g_B1Connection.Application.SendKeys("+")
            Catch ex As Exception
                g_B1Connection.Application.MessageBox(ex.Message, "Ok", 1)
            End Try
        End Sub
    Thanks,
    EJD

  • IPhoto deletes geo data when dragged out

    Hi,
    when I drag a photo out of iPhoto to say the desktop, the geo data is perfectly preserved and there when reimported on another Mac.
    Not so with my wife's iMac. When dragged out to the Finder, the photo loses it's geo data. That is bad.
    I dragged photos out of iPhoto forever, as this method alway exports the original file. Or so I thougt. I would like to avoid the File > Export way.
    We're both on Mavericks and the latest version of iPhoto (9.5).
    Preferences > Advanced >Include location information for published items
    is checked.
    Any help is very appreciated.
    Cheers
    Sebastian

    If the shot has never been edited - even simple things like auto-rotate - then dragging will get the original. However, if there has been any processing at all then it only gets the Preview. The preview doesn't carry all the metadata - it's actually designed for uses where that doesn't matter.
    The item in the Preferences refers to images published online.
    File -> Export is the way to go. That's what it is designed for.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • How to convert the date in the Parameter from to mm/dd/yyyy when you tab out of field

    Hello,
    Can some one help me out in Oracle Reports 3.0 version i am trying to
    set in the parameter form two date fields to mm/dd/yyyy.
    my questions is can we set the both of the date fields to if the user
    enters as 010202 and Tab out of the field it should automatically
    format to 01/02/2002.
    i know we can do this in forms but in the parameter form when you are
    sending as parameter to the report i am unable to do it.
    try to set date as format mask in properties but doesnt help..
    any body have any idea will be appreciated much..
    thanks in advance.

    Hi!
    Try to use dd/mm/rrrr format mask. I use it in my reports and it works fine for me. My user can enter 010101 in a date field and it is properly recognized as 01/01/2001 by reports.
    Hope it helps.

  • How can I change the behavior of the Green Enter button when filling out a field in a form? Current it submits the entire form, I would like it to tab to the next field instead

    When using Firefox for Andriod:
    When filling out a field on a form, they keyboard has a Green Enter button that submits the entire form. However, there are multiple fields on the page, and I would like it to tab to the next field. At the very least not submit the form.
    Also, is there a way to configure the keyboard that shows up for each html5 input type?

    They keyboard that shows up has the large "Green Enter" go button, a backspace and some arrow keys, but no tab button.

  • Date field automatcailly changing when tabbing through other scripted fields

    I have a form with a datetime field. The object is readonly. I format the field with javascript as yyyymmddhhmmss as a tracking number for the form. When tabbing through other fields with javascript the value changes to the current date time, like the code is being executed each time a scripted field is entered.
    Any ideas how to prevent that? I just want the code to execute when the form is opened.
    ----- form1.sbfDirect_Pay.dteCurrentDate::ready:layout - (JavaScript, client) ----------------------
    // Current Date in short-style date format.
    // $.rawValue = num2date(date(), DateFmt(1, "))
    var varCurrentTime = new Date();
    var varYear = varCurrentTime.getFullYear();
    var varMonth = varCurrentTime.getMonth() + 1;
    var varDay = varCurrentTime.getDate();
    var varHour = varCurrentTime.getHours();
    var varMin = varCurrentTime.getMinutes();
    var varSec = varCurrentTime.getSeconds();
    if(varMonth<10) varMonth = "0" + varMonth;
    if(varDay<10) varDay = "0" + varDay;
    if(varHour<10) varHour = "0" + varHour;
    if(varMin<10) varMin = "0" + varMin;
    if(varSec<10) varSec = "0" + varSec;
    // $.rawValue = year + "" + month + "" + day + "" + hour + "" + min + "" + sec;
    dteCurrentDate.rawValue = varYear + "" + varMonth + "" + varDay + "" + varHour + "" + varMin + "" + varSec;

    I think I just answered my own question. The code was in the layout:ready event. This area is executed each time the layout is modified. I moved the code to form:ready event.

Maybe you are looking for

  • Rendering to ProRes 4444 with alpha channel

    Hello Everybody, I have question? I have a green screen project finished. But when i render my footage to ProRes 4444 with aplha i got a mega file more then 5gb. In the specifications I found out that I have a bitrate of 203,57 Mbit/s. How can i lowe

  • Hi, i need help restoring my pictures

    Hi, i need help restoring all my pictures backed up in my iCloud I have tried everything I have read out here ,when I signed into this new iPad I only got a song I purchased on iTunes and some games but my pictures didn't restore ... Need help pls

  • Installing Oracle JRE

    Currently I'm using this package from the AUR.  I'm trying to install it with: $ makepkg -s # pacman -U jre-7.9-1-x86_64.pkg.tar However, this is returned: looking for inter-conflicts... :: jre and jre7-openjdk are in conflict (java-runtime). Remove

  • How to make a myRIO as a standalone device?

    Hey, Greetings! I'm working with NI myRIO for my project. I just want to know how to make the myRIO as standalone device. Please let me know the procedures for the same. Thanks in Advance. Looking forward for the helping hand. 

  • Any solutions to Apple's poor file copy function

    For many years Apple's OS - all versions on all computers does not have the intelligence to copy files from drive to drive.  Does anyone know of a different software program that can help the Apple OS do this simple task? A little more info - I have