javascript - Preventing the loss of keystrokes between pages in a web application -


my current project write web application equivalent of existing desktop application.

in desktop app @ points in workflow user might click on button , shown form fill in. if takes little time app display form, expert users know form , start typing, knowing app "catch them".

in web application doesn't happen: when user clicks link keystrokes lost until form on following page dispayed. have tricks preventing this? have move away using separate pages , use ajax embed form in page using gwt, or still have problem of lost keystrokes?

keystrokes won't have effect until page has loaded, javascript has been processed , text field focused.

basically asking is; how speed web application increase response times? anwser ajax!

carefully think common actions in application , use ajax minimise reloading of webpages. remember, don't over-use ajax. using javascript can hinder usability as can improve it.

related reading material:


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -