Validators and javascript

D

dmedina

How I can from client javascript know when one of my
textboxes, Radio Button List, drop down box, etc...
Validated to False when submitting the form.

I can get the page_Isvalid==false but i need to know which
control is empty or not selected, so i can put the
cursor...

//Sample code
if (page_Isvalid==false){
if (txt_box1.value.length<1){
document.GetElementById('txt_box1').Focus()
}
}

The code above works great but I don't now how to approach
when i have a dropdownbox, radioButton list, etc...


Thanks,
dmedina
 
W

William F. Robertson, Jr.

The way I do the DropDownList boxes is I have the selected item say
something like "make a selection" and it has a value of 0 (none of my other
values have a 0 value.) that value is hardcoded as part of the list. Yes I
did have to override the asp DropDownListBox to have this functionality, but
you could also do it by hand.

Then I step through it the same way you did with the TextBox except for the
list box.

if ( ddl_box1.value == "0" )
document.GetElementById( 'ddl_box1').focus()

HTH,

bill
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,077
Messages
2,570,566
Members
47,202
Latest member
misc.

Latest Threads

Top