The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
|
![]() |
Auto Fill a Field - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: General Discussion (https://forums.formtools.org/forumdisplay.php?fid=5) +--- Thread: Auto Fill a Field (/showthread.php?tid=2420) |
Auto Fill a Field - dondiegovega - Apr 12th, 2013 Hi. Thanks for formtoools. It's great. How do I set a field to be pre filled? That is, when a user gets to that field, it is already populated, but they can change it if need be. In that field, a large majority of the entries will be the same. A few won't. Thanks. RE: Auto Fill a Field - alexh - Apr 12th, 2013 For a text area field, try: Code: <textarea> Or for a simple text field, try: Code: <input type="text" name="first_name" value="Robert"> Check out: http://www.w3schools.com/tags/att_input_value.asp Hope this helps!! Alex (Apr 12th, 2013, 9:31 AM)dondiegovega Wrote: Hi. RE: Auto Fill a Field - dondiegovega - Apr 12th, 2013 Thanks. How do I do this with an "internal" form? RE: Auto Fill a Field - alexh - Apr 13th, 2013 Unfortunately I do not believe that you can do that with an internal form. Alex |