CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Type Ahead HTML

  1. #1
    Join Date
    Dec 2002
    Posts
    3

    Question Type Ahead HTML

    Dear All,

    I would like to implement type ahead feature in an HTML form so that user can type field values of the form before it is displayed. For example, on a sales order page there are part, quantity etc. fields. User clicks on a link to display the sales order form page, at this point user knows the value of part and quantity fields so he/she would want to start typing values of these fields even before form is displayed. I know that this may not be possible as form is not displayed but I also know there are GENIUS out there so you may prove me wrong.

    Please help!!

  2. #2
    Join Date
    Aug 2002
    Location
    Reykjavik, Iceland
    Posts
    201
    If your page contains a series of nested HTML tables, with one wrapper table enclosing them, then most rendering engines will not display anything until the entire file is parsed. This will cause a delay for the user, especially in the case of repetitive data entry.

    By redesigning the page so that it is broken into several separate HTML tables (without an outer wrapper table), each section will appear on the screen once it's given table has been parsed. That way a user can type in a section that is displayed while other sections lower on the page haven't been rendered yet.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured