[CLOSED] How to focus TextField in Window?

  1. #1

    [CLOSED] How to focus TextField in Window?

    Hello,

    can anybody explain to me how I can focus a TextField?

    Here is my example:

    <%@ Page Language="C#" %>
    
    <%@ Import Namespace="System.Data" %>
    <%@ Register Assembly="Coolite.Ext.Web" Namespace="Coolite.Ext.Web" TagPrefix="ext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title></title>
    
    </head>
    <body>
        <form id="form2" runat="server">
        <ext:ScriptManager ID="scm" runat="server">
        </ext:ScriptManager>
        <ext:Window ID="OrderWindow" runat="server" Title="TEST" Modal="true" TitleCollapse="false" AutoHeight="true">
            <Body>
                <ext:TextField ID="TestTF" runat="server">
                    <Listeners>
                        <Show Handler="this.focus();" />
                    </Listeners>
                </ext:TextField>
            </Body>
        </ext:Window>
        </form>
    </body>
    </html>
    I want to enter text by keyboard in the TextField without the need to click with the mouse on that TextField before.
    Just a simple focus :-)

    Regards,

    Martin

  2. #2

    RE: [CLOSED] How to focus TextField in Window?

    Hi,

    Try add the following listener for the Window
    <Show Handler="#{TestTF}.focus();" Delay="50" />
  3. #3

    RE: [CLOSED] How to focus TextField in Window?

    I tried that too before, but without Delay.
    With the Delay it works fine.

    Thank you!

Similar Threads

  1. [CLOSED] Set focus to TextField once Window is visible
    By digitek in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jul 13, 2012, 11:45 AM
  2. [CLOSED] Focus TextField if Window Hide=true
    By macap in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jul 12, 2010, 1:59 PM
  3. Set focus on TextField after window load
    By sfvaleriano in forum 1.x Help
    Replies: 0
    Last Post: Oct 15, 2009, 8:27 AM
  4. Focus on Textfield
    By hans4 in forum 1.x Help
    Replies: 2
    Last Post: Jul 02, 2009, 9:08 PM
  5. [CLOSED] Set Focus to textfield in logon window
    By HOWARDJ in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: May 17, 2009, 9:41 PM

Posting Permissions