Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a form a text box is created dynamically by clicking on add button such that the text box is created in a new row.Now my problem is the validation of text boxes which were created dynamically such that it shows a message if any of text boxes are left empty when form is submitted by clicking submit button.Please help me out.

EDIT

  <html>
   <head>

  <SCRIPT language="javascript">
   function addRow(tableID) {

    var table = document.getElementById(tableID);

    var rowCount = table.rows.length;
    var row = table.insertRow(rowCount);

    var cell1 = row.insertCell(0);
    var element1 = document.createElement("input");
    element1.type = "text";
    cell1.appendChild(element1);
 }

   </SCRIPT>
   </head>


   <body>


    <form onSubmit="return validateFormOnSubmit(this)">
   <INPUT type="button" value="Add More Symptom " onClick="addRow('dataTable')" />


    <TABLE id="dataTable" >
      <TR>

        <TD > 
          <INPUT type="text" name="symp[]" /> 
         </TD>
       </TR>
    </TABLE>
   <input type="submit" value="Submit" name="ADD_SUBMIT">
   </form>


  </body>    
  </html>

Above is the script to add new textboxes in a new row. Now i require that when submit button is clicked, each text boxes should be validated whether it is empty or not on client side. The entered values in the text box should not disappear and number of empty text boxes should be same.

share|improve this question
1. Validation of text boxes client side or server side? 2. show a bit of code maybe could halp us reply. 3. if client side validation of boxes does not change much either they are created dyncamically or not. – Marco Demaio Jun 21 '10 at 18:43
Here text boxes ,created dynamically, has to be validated on client side. – Terry Jun 21 '10 at 18:48

2 Answers

up vote 1 down vote accepted

on the submit event of the form you simply need to collect all input text boxes that you find in the form and pass them into a validation function.

Put this code in the <head> section of your page

//This function here is only a cross-browser events stopper
stopEvent = function(ffevent)
{
   var current_window = window;

   if(current_window.event) //window.event is IE, ffevent is FF
   {
      //IE
      current_window.event.cancelBubble = true; //this stops event propagation
      current_window.event.returnValue = false; //this prevents default (usually is what we want)
   }
   else
   {
      //Firefox
      ffevent.stopPropagation();
      ffevent.preventDefault();
   };
}

function validateAllInputBoxes(ffevent)
{
   var inputs = document.getElementsByTagName('input');
   for(var i = 0; i < inputs.length; ++i)
      if(inputs[i].type === 'text')
         //@Satish, maybe below you wrote by mistake if(inputs[i].value = '') thus all input elements values get cleared out.
         if(inputs[i].value === '') 
         {
            alert("form could not be sent one input text field is empty");
            stopEvent(ffevent);
         }
}

and in the the <form> tag place the following code:

onsubmit="validateAllInputBoxes(event);"
share|improve this answer
The above code is working but when alert box is entered the older values in the text boxes should not disappear(here disappeared) and number of text boxes created should be same(here all text boxes are reduced to one).Try to show it in the edited code. – Terry Jun 21 '10 at 20:28
1st) REPLACE <form onSubmit="return validateFormOnSubmit(this)"> taht is not even cross browser with <form onsubmit="validateFormOnSubmit(event)"> (exactly how I wrote it) and try again! 2nd) There is no reason why the older value should get cleared out with your/mine code we are not touching the value text unless read the comment I added in code. – Marco Demaio Jun 21 '10 at 21:00
Thanks with little modification in your code i got the result that i require. – Terry Jun 22 '10 at 19:45
<html>
<head>
<script type="text/javascript">
  var counter = 0;
            function addNew() {
              var mainContainer = document.getElementById('form2');
                var newDiv = document.createElement('div');
                 var newText = document.createElement('input');
                var newlabel = document.createElement('label');
                newText.type = "input";
                newText.value = counter;
                newlabel.type = "label";
                newlabel.value = counter;


                 var newDelButton = document.createElement('input');
                newDelButton.type = "button";
                newDelButton.value = "Delete";
                  newDiv.appendChild(newText);
                  newDiv.appendChild(newlabel);
                    mainContainer.appendChild(newDiv);
                 counter++;
                  newDelButton.onclick = function (){
                   mainContainer.removeChild(newDiv);

                }
            }
  var bigger = 0;
            function addNew1() {
              var mainContainer1 = document.getElementById('form3');
                var newDiv1 = document.createElement('div');
                 var newText1 = document.createElement('input');
                newText1.type = "input";
                newText1.value = bigger;
                 var newDelButton1 = document.createElement('input');
                newDelButton1.type = "button";
                newDelButton1.value = "Delete";
                  newDiv1.appendChild(newText1);
                    mainContainer1.appendChild(newDiv1);
                bigger++;
                  newDelButton1.onclick = function () {
                   mainContainer1.removeChild(newDiv1);
                }
            }

    function formvalidation() {
        var x = document.getElementById("firstname").value;
        var y = document.getElementById("secondname").value;
        var z = document.getElementById("address").value;
        var a = document.getElementById("mobilenumber").value;
        var b = document.getElementById("emailid").value;
        var exp = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
        var flag = 0;

        if (x == null || x == "") {
            document.getElementById("lblmsg").style.display = "";
            document.getElementById("lblmsg").innerHTML = "enter first name";
            flag = flag + 1;
        }
        else {
            document.getElementById("lblmsg").style.display = "none";

        }
        if (y == null || y == "") {
            document.getElementById("lblmsg1").style.display = "";
            document.getElementById("lblmsg1").innerHTML = "enter second name";
            flag = flag + 1;
        }
        else {
            document.getElementById("lblmsg1").style.display = "none";
        }

        if (z == null || z == "") {
            document.getElementById("lblmsg2").style.display = "";
            document.getElementById("lblmsg2").innerHTML = "enter your address";
            flag = flag + 1;
        }
        else {
            document.getElementById("lblmsg2").style.display = "none";
        }

        if (a == "") {
            document.getElementById("lblmsg3").style.display = "";
            document.getElementById("lblmsg3").innerHTML = "enter mobile number";
            // a.focus();
            flag = flag + 1;
        }
        else {
            document.getElementById("lblmsg3").style.display = "none";
        }

        if (isNaN(a)) {
            document.getElementById("lblmsg3").style.display = "";
            document.getElementById("lblmsg3").innerHTML = "eneter only numbers";
            // a.focus();
            flag = flag + 1;
        }
        else {
            document.getElementById("lblmsg3").style.display = "none";
        }
        if (a.length > 10 || a.length < 10) {
            document.getElementById("lblmsg3").style.display = "";
            document.getElementById("lblmsg3").innerHTML = "mobile number should be 10 digit one";
            //  a.focus();
            flag = flag + 1;
        }
        else {
            document.getElementById("lblmsg3").style.display = "none";
        }

        if (b == "") {
            document.getElementById("lblmsg4").style.display = "";
            document.getElementById("lblmsg4").innerHTML = "enter email id";
            flag = flag + 1;
        }
        else {
            document.getElementById("lblmsg4").style.display = "none";
        }
        if (exp.test(b) == false) {
            document.getElementById("lblmsg4").style.display = "";
            document.getElementById("lblmsg4").innerHTML = "correct format is xyz@x.com";
             flag=flag+1;
         }

        else {
            document.getElementById("lblmsg4").style.display = "none";
        }
         if(input == ""){
        document.getElementById("unique_label_id").innerHTML="enter ur mobile number";
        flag = flag+1;
        }


        if (flag > 0) {
            return false;
        }
        else {
            return true;
        }
    }
</script>
</head>
<body>

First Name: <input type="text" id="firstname"/>
<label id="lblmsg" style="color:Red;" ></label><br />
Second Name:<input type="text" id="secondname"/>
<label id="lblmsg1" style="color:Red;" ></label><br />
Address:<input type="text" id="address" />
<label id="lblmsg2" style="color:Red;" ></label><br />


<form id="form2" method="get" >
<div>Mobile number:<input type="text" id="mobilenumber" name="txt1" class="txt11" />
<label id="lblmsg3" style="color:Red;"  class="lbl11"  ></label><input type="button" value="Add" onclick="addNew()" /></div>

</form>


<form id="form3" method="get" >
<div>Email id:<input type="text" id="emailid"  />
<label id="lblmsg4" style="color:Red;" ></label><input type="button" value="Add" onclick="addNew1()" /></div>
</form>
<input type="button" value="Submit" onclick=" return formvalidation()"/>
<input type="button" value="Clear"  onclick="reset()"/>

</body>
</html>
share|improve this answer
Here iam unable to validate the dynamically created textboxes please help me out – karthik reddy Jan 28 at 10:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.