[CLOSED] Autocomplete function is not working in textfield....

Page 1 of 4 123 ... LastLast
  1. #1

    [CLOSED] Autocomplete function is not working in textfield....

    hi

    I think autocomplete function is missing in textfield... I have user textfield.. In which in normal textbox shows the username next time he comes to the site... But in ext it is missing... Can you tell me how to activate this function...

    Thank you,

    Regards,
    Madan
    Last edited by Daniil; Jan 28, 2014 at 3:30 AM. Reason: [CLOSED]
  2. #2

    RE: Autocomplete function is not working in textfield....

    Sorry, but I do not understand your request. Please provide more information.

    Geoffrey McGill
    Founder
  3. #3

    RE: Autocomplete function is not working in textfield....

    for example i go to gmail.com and i enter my username and password and login.
    username: xyzxyz...
    and i login for the first time.. finish my work and logout and close the window...
    Again i go to browser and open gmail.com..
    Now when i hit x i can c the entire username which i typed last time...
    this event is not available in the textfield...
    Hope you got more information
  4. #4

    RE: Autocomplete function is not working in textfield....

    Hi speedstep,

    Thanks for the update. That helps clarify the problem.

    At the moment the only solution I have is to override the "autoCreate" property. The following code sample demonstrates how this done.

    Example

    <ext:TextField id="TextField1" runat="server" MaxLength="8">
        <CustomConfig>
            <ext:ConfigItem Name="autoCreate" Value="{tag: 'input', type: 'text', size: '20'}" />
        </CustomConfig>
    </ext:TextField>
    Hope this helps.

    Geoffrey McGill
    Founder
  5. #5

    RE: Autocomplete function is not working in textfield....

    I am trying to use the internet browser's (ie7) autocomplete function on passwords typed into a coolite window for logging into a site. I tried the above code but the password doesn't seem to be picked up by the browser and stored. Is there anything I have missed? Is there anything else that could be done in this situation?

    
    
    
    
    <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm1.aspx.vb" Inherits="HomePage.WebForm1" %>
    <%@ 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 runat="server">
    <script runat="server">
    
    Private Sub SetTime()
      Me.Label1.Text = DateTime.Now.ToLongTimeString()
    End Sub
    
    Protected Overloads Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
      If Not Ext.IsAjaxRequest Then
        Me.SetTime()
      End If
    End Sub
    
    Protected Sub UpdateTimeStamp(ByVal sender As Object, ByVal e As AjaxEventArgs)
      Me.SetTime()
    End Sub
    
    </script> 
    </head>
    <body>
    <form id="form1" runat="server">
    
    <ext:ScriptManager ID="ScriptManager1" runat="server"></ext:ScriptManager>
    <ext:Label ID="Label1" runat="server"></ext:Label>
    <br />
    <ext:TextField ID="TextField1" runat="server" InputType="Password">
      <CustomConfig> 
        <ext:ConfigItem Name="autoCreate" Value="{tag: 'input', type: 'text', size: '20'}" /> 
      </CustomConfig>
    </ext:TextField>
    <ext:Button ID="Button1" runat="server" Text="Submit">
      <AjaxEvents>
        <Click OnEvent="UpdateTimeStamp">
          <EventMask ShowMask="true" MinDelay="500" Msg="Updating TimeStamp..." />
        </Click>
      </AjaxEvents>
    </ext:Button>
    
    
    </form>
    </body>
    </html>
  6. #6

    RE: Autocomplete function is not working in textfield....

    Hi,

    Please ensure that your this feathure is activated in your browser (IE)*

    To turn on the inline AutoComplete feature for Web addresses, follow these steps in Internet Explorer:
    1. On the Tools menu, click Internet Options.
    2. Click the Advanced *tab.
    3. Under Browsing, click the Use inline AutoComplete for Web addresses check box, and then click OK.
    Last edited by geoffrey.mcgill; May 24, 2012 at 7:30 PM.
  7. #7

    RE: Autocomplete function is not working in textfield....

    Does autocomplete work on password input fields?


    Geoffrey McGill
    Founder
  8. #8

    RE: Autocomplete function is not working in textfield....

    On any other password form fields, IE will prompt and ask if I would like to save this password. If I reply yes, on subsequent visits to that page, after typing in the username, it will autofill the password and I just click the enter key (or click the submit button) and the form submits and I am logged in.

    I do have the autocomplete functionality turned on in IE:
    Tools --> InternetOptions --> Content --> Autocomplete (Settings) --> everything is checked for autocomplete

    There just seems to be something about the way the form fields are rendered that prevent IE from using them with it's auto complete function.

    Is there anything that can be done?



  9. #9
    This solution does not work. Any chance this will be fixed in version 2?

    Quote Originally Posted by geoffrey.mcgill View Post
    Hi speedstep,

    Thanks for the update. That helps clarify the problem.

    At the moment the only solution I have is to override the "autoCreate" property. The following code sample demonstrates how this done.

    Example

    <ext:TextField id="TextField1" runat="server" MaxLength="8">
        <CustomConfig>
            <ext:ConfigItem Name="autoCreate" Value="{tag: 'input', type: 'text', size: '20'}" />
        </CustomConfig>
    </ext:TextField>
    Hope this helps.
  10. #10
    Could someone provide a raw HTML or/and ASP.NET example where IE auto-complete feature would work?

    We would do our best to investigate that sample and try to get it working in Ext.NET as well.
Page 1 of 4 123 ... LastLast

Similar Threads

  1. TextField MaxLength not working
    By xtremexploit in forum 2.x Help
    Replies: 1
    Last Post: Jun 18, 2012, 11:28 PM
  2. [CLOSED] textfield red underline validation not working
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 13
    Last Post: Feb 16, 2012, 1:42 PM
  3. [CLOSED] TextField Reset Text from ServerSide Not Working
    By webclouder in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: May 11, 2010, 1:25 PM
  4. Replies: 6
    Last Post: Nov 16, 2009, 12:35 AM
  5. Textfield Keyup Listener Not Working
    By Tbaseflug in forum 1.x Help
    Replies: 1
    Last Post: Sep 25, 2009, 2:10 AM

Tags for this Thread

Posting Permissions