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.

Similar Messages

  • When trying to frame a text box, I can't figure out how to color the frame.

    When trying to frame a text box, I can't figure out to change the color of the frame.

    Could you please tell us what software you are using?

  • After recent update to ff 10 my ff loses focus when opening non-active window. ALready tried everything. Any sugestions?

    After update to ff10 widnows lose focus when migrating to a different window. tried all possible options and still the same even after recent update to 11. Any suggestions?

    After update to ff10 widnows lose focus when migrating to a different window. tried all possible options and still the same even after recent update to 11. Any suggestions?

  • SUBTITLES CUT OFF AND OUT OF BOUNDING TEXT BOX

    SUBTITLES CUT OFF AND OUT OF BOUNDING TEXT BOX
    by Ben Martin on Jun 24, 2008 at 9:57:39 am
    I use Encore version 2.0 and have problem with subtitles on a 30 minutes video. I have not imported these subtitles, but made them, one clip at the time. The first 10 minutes is fine, each subtitle is within a bounding box (the bounding box was stretched up to the first inner rectangle of the Safe Area). They can be seen fine on the timeline and on the DVD.
    However from one particular subtitle onwards, all the subtitles clips seem to suffer from the same problem. When I play them on the timeline the long subtitles are cut off at the right end. When I click on them within the monitor, I see that they are not within a normal bounding box. Instead the text is sort of "embedded" within a structure of white squares (similar to a bounding box), but any attempt to strecth that "structure" by pulling a square with a text tool, only deform and extend the text itself.
    I have tried to create a blank subtitle clip after the last "good" one, using the Add subtitle button on the monitor, but it won't create an empty bounding box within which I could type or paste the text. It works if I try to create an empty clip in the "good" area of the time line (the first 10 minutes), but not before or after that first bad clip I mentioned above. It is as if there was something bad on the timeline and any attempt to create a proper bounding box clip is impossible.
    Is there a setting that I can change? or is it a bug in the programme?
    Any help would be appreciated. Thanks.
    Ben Martin
    Payday

    In order to aviod stretching the existing text, you must use text tool to resize the boundry box.

  • 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

  • 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,

  • JTable - loosing focus without tabbing out

    Hi all,
    I have a JTable and when the user goes to enter some text in a field I would like the value entered to persist to the underlying object as soon as the text is changed. This is without the user tabbing out of the JTable.
    Currently when a value is changed and the user hits a save button the value is not saved as the focus is still in the table, it all works fine as soon as the user enters the new value and tabs out of the table and then selects save,
    Does anyone have any suggestions?
    THanks,

    This can be done via your own TableCellEditor class. Create a TableCellEditor class. Implement KeyListener in this editor to save whenever the data is modified.
    You can set the default editor via setDefaultEditor() on JTable.

  • 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

  • Bug? InDesign CC/CC2014 loses focus when closing ScriptUI dialog window

    When closing a "dialog" type window, created using ScriptUI from Extendscript, InDesign will lose focus as "active application" in Windows (7/8) and instead switch to another application in Windows altogether. This behavior does not occur on previous versions of InDesign (CS6 and earlier). I can easily reproduce the problem at my company on various machines (both on Windows 7 and Windows 8). The Mac OS version of InDesign does not seem to have this problem. Also, the problem does not seem to occur when using "palette" or "window" type ScriptUI windows.

    That's in itself an interesting observation, but I have the focus problem 
    also with scripts that don't use ScriptUI at all.
    Peter
    On Mon, 13 Oct 2014 08:38:27 +0100, DirkEBM <[email protected]>

  • I am filling out an online application for school. Is it possible to set Firefox to check spelling when in a single-line text box without having to right click every time?

    I want to be able to set spell check to occur automatically even for single-line text boxes.

    You can set the pref <b>layout.spellcheckDefault</b> to <i>2</i> on the <b>about:config</b> page to perform the spell check on single line and multi line text fields.
    * http://kb.mozillazine.org/layout.spellcheckDefault
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold(user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • My indesign keeps crashing when I type in a text box

    Hello
    My indesign keeps crashing when ever I start typing in a text box (CS5) - I followed a similar discussion and the advice was to uninstall and reinstall - I have uninstalled but cannnot find my Master collection to re-install. I'm working on a Mac Leopard - Please Help

    I'm a Widows guy with some Mac experience, so these directions may be a bit fuzzy, and someone else may feel free to pop in. My recollection is that you will need to double-click both of the .dmg files (these are disk image files) to mount them, if they don't mount automatically. You may have to decompress the first file further to get it to extract the installer (which should automatically extract the second file). If you are able to run the installer, and enter your serial number, but the number is not recognized as valid it will be because there is some sort of trap for education serial numbers.
    If that's the case, you are probably out of luck on CS5, but you may be eligible to upgrade to a full commercial license for CS6, or a discounted Creative Cloud license. I'm not dead certain, but I believe the old serial number should be sufficient to to provide proof of previous license during the install. If that's the route you need to take, you need to do it quickly. Once CS7 is released, and predictions seem to be in about ten days to two weeks from now, at least for an official launch date announcement, your CS5 will probably no longer be good for an upgrade discount.

  • Gray out or disable text box

    Hi,
         I have a drop down menu called CN_Entry_Initials that has options of a "C" or an "N". I also have a text box called Part_Number to enter a part number into. I want the Part Number text box to be grayed out or disabled until either a "C" or an "N" has been chosen out of the CN_Entry_Initials drop down menu. I have this working, except that I cannot get the Add button to do anything. I think it’s something to do with the way I have the If statement for this disabled text box, or do I have to change the button to a submit button. Does anyone know how to fix this? Below is the javascript and the drop down menu and text box code along with the Add or submit button. There is extra stuff in the Javascript that I have on the page, but I don't need to worry about those things since they are working correctly. I have the disabled text box code at the top of the javascript under the function verify() code. Thanks.
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Original:  Wayne Nolting ([email protected]) -->
    <!-- This script and many more are available free online at -->
    <!-- Begin
    function verify()
    if (document.getElementById('CN_Entry_Initials').value == "C"
    || document.getElementById('CN_Entry_Initials').value == "N")
        document.getElementById('Part_Number').disabled = false;
    else
        document.getElementById('Part_Number').disabled = true;
    var PartNum=document.AddECNumber.Part_Number.value;
    var regularExpression = new RegExp(/[cC][0-9]/); //regular expression to check for a letter C followed by a number
    if(regularExpression.test(PartNum)&& document.AddECNumber.CN_Entry_Initials.value == "N" && document.AddECNumber.Validation_Qty.value == "") { //this will return true if the input passes the regular expression
    alert("Enter a Validation Quantity for this new Custom");
    else if(document.AddECNumber.CN_Entry_Initials.value == "N" && document.AddECNumber.P_Drive_Docs_Initials.value == "i") { //this will return true if the input passes the regular expression
    alert("You cannot select 'i' for docs to be removed for a new part");
    else if(document.AddECNumber.CN_Entry_Initials.value == ""  && document.AddECNumber.SW_Model_Only.value == "0") { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (N)ew or (C)hange for eco line item");
    else if(document.AddECNumber.PNR_BOM_Change_Only.value == "1" && document.AddECNumber.CN_Entry_Initials.value != "C" && (document.AddECNumber.Release_Status_Initials.value == "U"
    || document.AddECNumber.Release_Status_Initials.value == "N")) { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (C)hange for eco line item and Select N for Release Status if PNR/BOM Change Only is yes");
    else if(document.AddECNumber.PNR_BOM_Change_Only.value == "1" && document.AddECNumber.CN_Entry_Initials.value == "C" && document.AddECNumber.Release_Status_Initials.value == "U") { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (C)hange for eco line item and Select N for Release Status if PNR/BOM Change Only is yes");
    else if(document.AddECNumber.Doc_Changes_Only.value == "1" && document.AddECNumber.CN_Entry_Initials.value != "C") { //this will return true if the input passes the regular expression
    alert("ECO type required - Select (C)hange for eco line item since Doc Changes Only is yes");
    <!--- else if (document.AddECNumber.P_Drive_Docs_Initials.value == "i")
    // self.location='eco_search.cfm'; --->
    else
    document.AddECNumber.submit();
    //  End -->
    </script>
    <cfform name="AddECNumber" action="add_new_ec_number_action.cfm" method="post">
    <tr>
    <td class="edit" align="right">Change or new entry:</td>
    <td>
              <select name="CN_Entry_Initials" id="CN_Entry_Initials" onchange="verify();">
                <option value="">Select</option>
    <!--------- POPULATE SELECT BOX WITH P_Drive_Docs_Initials FIELDS --------->
                <CFOUTPUT QUERY="ShowCNEntryInitials">
                <option value="#CN_Entry_Initials#">#CN_Entry_Initials#
                </CFOUTPUT>
              </select>
    </td>
    </tr>
    <tr>
    <td class="edit" align="right" valign="middle">Part Number:<br><h6>(Limit to 25 characters)</h6></td>
    <td><input type="text" name="Part_Number" id="Part_Number" maxlength="25" size="27" disabled="disabled"></td>
    <td><textarea name="Description" cols="30" rows="3"></textarea></td>
    </tr>
    <input type="button" value="Add" onclick="verify();">
    </cfform>
    Thanks.
    Andy

    I don't understand about using the alert box to output the variables. I know that everything was working with alert boxes, etc. before I added the code for the disable text box code. The difference I see is on the disable text box code I use document.getElementById and on the other code I use document.AddECNumber. Could this cause the Add button to not work? If so, how do I change this code to make it work? I tried just changing it be like the document.AddECNumber code, but that didn't work.
    Andy

  • When I type into any text box the background of the box is blue and when I try to google something I can't see what I am typing...anyone know how to fix this?

    Any text box I type in the background is blue no matter what, if the website is dark the font is white and I can't read what I am typing. When I type in Google my typing doesn't show up unless I highlight it. Any help?

    That can be caused by the "Keystroke protection" in Comcast Constant Guard.
    "Configure Anti-Keylogging Settings" -> disable
    *[[/questions/874709]]
    *[[/questions/870165]]

  • [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)

  • Type tool loses focus when toggling between programs. New feature or bug?

    In Photoshop versions previous to CC, I could be typing with the type tool, then toggle to another program (or the web) to copy text, and return to Photoshop to paste. This is now gone, as once I toggle away, it saves the state of the text. Rather annoying, as I used to use the capability to paste bits of text.
    A change that I believe coincided with this is the fact that text in the type tool is now saved when hitting the escape key. I also used to use this to try out different versions of copy, then hit Esc to undo the changes, whereas now, it saves it regardless.
    Both of these seem like bugs to me. Can anyone tell me the story behind these?

    I just tried with Photoshop CC 2014.1.  Here's what I did:
    1.  Select the T tool.
    2.  Type in some text.
    3.  Alt-Tab to another window (this browser window, specifically).
    4.  Selected and copied some text with Control-C.
    5.  Alt-Tab back to Photoshop.
    6.  Control-V to paste.
    The text went in where I had left off typing.  I tested this with Photoshop CS6 just now as well and saw no difference.  I can't hazard a guess why that wouldn't work for you.  I'm on Win 8.1.
    You're right, pressing Escape does preserve the typed text now, which is different than in Photoshop CS6.  Like you, I'd expect that to abort the text entry.
    -Noel

Maybe you are looking for