close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Defualt Value to Form Field

Thread began 3/16/2011 10:33 am by gary917 | Last modified 3/23/2011 8:01 am by Jason Byrnes | 2654 views | 9 replies |

gary917

Defualt Value to Form Field

Hi; I am trying to add a default value to my form fields so that I do not have to use labels.
I was trying to use the following code
value="Your Name:" onfocus="if(this.value=='Your Name:'){this.value=''}" onblur="if(this.value==''){this.value='Your Name:'}"

by adding it to...

<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("index2","Full_Name"):"")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError');"/>

I can not get both to function together.
Any help would be appreciated.

Thanks

Sign in to reply to this post

Jason ByrnesWebAssist

to set a default value, change:

php:
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("index2","Full_Name"):"")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError');"/>




to:

php:
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("index2","Full_Name"):"Your Default Value Here")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError');"/>
Sign in to reply to this post

gary917

This does not seem to work.

The error checking quits functioning, as well the field does not remove the default value once the field has focus (the cursor is placed in the field).

For example this how I would like the input field to function...
<input type="text" value="Your Name:" onfocus="if(this.value=='Your Name:'){this.value=''}" onblur="if(this.value==''){this.value='Your Name:'}"/>

My original is as follows...
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'), if(this.value==''){this.value='Your Full Name'};"/>

I have then changed the input field to this, but the field quits functioning....
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"Your Full Name")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'), if(this.value==''){this.value='Your Full Name'};"/>

Thanks

Sign in to reply to this post

Jason ByrnesWebAssist

the problem in the code:
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'), if(this.value==''){this.value='Your Full Name'};"/>

is that you are using a comma between the on blur functions:
onblur="hideServerError('Full_Name_ServerError'), if(this.value==''){this.value='Your Full Name'};"

it shgould be a semi colon:
onblur="hideServerError('Full_Name_ServerError'); if(this.value==''){this.value='Your Full Name'};"


use:
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'); if(this.value==''){this.value='Your Full Name'};" onfocus="if(this.value=='Your Name:'){this.value=''}" />

Sign in to reply to this post

gary917

Thanks but I am still having a problem.

When I add a default value to the field the default value should disappear when the field has focus (cursor is in the field), allowing the user to type a value into the field without highlighting/deleting the default value. I am not sure what I am doing wrong.


<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"Your Full Name")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'); if(this.value==''){this.value='Your Full Name'};" onfocus="if(this.value=='Your Name:'){this.value=''}" />

Thanks again for all your help.

Sign in to reply to this post

Jason ByrnesWebAssist

use the code i provided in my last reply:
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'); if(this.value==''){this.value='Your Full Name'};" onfocus="if(this.value=='Your Name:'){this.value=''}" />
Edit/Delete Message

Sign in to reply to this post

gary917

No default value

Using the code you provided I am not getting any default value in the field; the field is blank. If a user leaves the field after clicking into it then the value appears.

Sign in to reply to this post

Jason ByrnesWebAssist

ok, then using this code:
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"Your Full Name")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'); if(this.value==''){this.value='Your Full Name'};" onfocus="if(this.value=='Your Name:'){this.value=''}" />


change it ot:
<input id="Full_Name" name="Full_Name" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("form2","Full_Name"):"Your Full Name:")); ?>" class="formTextfield_Large" tabindex="1" onblur="hideServerError('Full_Name_ServerError'); if(this.value==''){this.value='Your Full Name'};" onfocus="if(this.value=='Your Full Name:'){this.value=''}" />

Sign in to reply to this post

gary917

Thanks for your help

Thanks again

Sign in to reply to this post

Jason ByrnesWebAssist

you're welcome.

Sign in to reply to this post
loading

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...