Hi I have created few same named combo boxes and text fields on the page. Fields are part of table rows.
But when I submit the form, I can see all the fields in my java code.
here is my function which create the fields.
Please let me know whats wrong in this. This is adding new rows with all values in it, but on submission of form its not giving me all the fieldsCode:function addRow(tableID) { var oForm = document.forms[0] ; //alert(oForm.id) ; var ctypes = oForm.elements["claimTypeValues"].value; var tokens = ctypes.split(",") ; // alert("tokens="+tokens) ; // alert("tokens[0]="+tokens[0]) ; var table = document.getElementById(tableID); //alert(table) ; var rowCount = table.rows.length; var row = table.insertRow(rowCount); row.setAttribute("id",rowCount) ; //alert(rowCount) ; var cell0 = row.insertCell(0); //alert(cell0) ; var spanTag = document.createElement("span"); spanTag.id = "span1"; spanTag.className ="dynamicSpan"; spanTag.innerHTML = "${content.TableClaimTypeLabel}:"; cell0.appendChild(spanTag); var _select = createCombo(tokens) ; cell0.appendChild(_select); oForm.appendChild(cell0) ; here is my html code: <form method="post" id="sampleForm" method="POST"> <select name="claimType" id="claimType"> ... ...
-Thanks.


Reply With Quote

Bookmarks