PDA

View Full Version : server validation on select field


geordie728
05-20-2009, 07:14 AM
I've got a drop-down which displays a list of countries when clicked.

The default option is "select country" which has no value. I want to apply server validation that requires a value but not the "select country" option.

Where will I find that?

Ray Borduin
05-20-2009, 07:38 AM
Make sure it has <option value="">select country</option> and just use required validation.

geordie728
05-22-2009, 04:51 AM
Make sure it has <option value="">select country</option> and just use required validation.

Thanks Ray