| Author |
Dynamic Form Validation
|
Jeetendra S Ahuja
Greenhorn
Joined: Feb 11, 2012
Posts: 7
|
|
In my jsp web page,an table is created dynamically,with columns:
MergeStop Sequence
Now MergeStop is readonly field which cannot be edited and sequence is text field which is to be filled by user,i want to do form validation of this dynamically created web page.
I know static validation i.e., by document.getElemnetById("").value.length>0/////but how to use same concept for varying id's created dynamically..
thank you
do help
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56204
|
|
|
Once an element has been created there's no difference between "dynamic" and "static". If you are creating the elements, then you should know what the id values are.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Jeetendra S Ahuja
Greenhorn
Joined: Feb 11, 2012
Posts: 7
|
|
Actually,,,,web page content changes dynamically......
so how it is possible to do form validation on varying text fields id's
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56204
|
|
|
How is it "changing dynamically"? If it's your code changing it, then you should know what id values are being generated. As I said, once the element is created, it doesn't matter how it was created, it can be treated the same as every other element.
|
 |
 |
|
|
subject: Dynamic Form Validation
|
|
|