Ask a Question related to Brainstorming Area, Design and Development.
-
upeshk #1
capturing the value of dinamically created textfield
Hi ,
I am dynamically created cells for a table at runtime on an jsp form. The last
cell of each row contains a Textfield in which the user will enter
values into.
My Problem:
How do I capture the values in each text field once the user continues
(click button) to the next screen??
my javascript for creating the cell anong with other tools are given below.
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 = "checkbox";
cell1.appendChild(element1);
cell1.align="center";
var cell2 = row.insertCell(1);
cell2.align="center";
cell2.innerHTML = "Evaluation Criteria " + rowCount;
var cell3 = row.insertCell(2);
var element2 = document.createElement("input");
element2.type = "text";
element2.size="40";
cell3.appendChild(element2);
}
If you could possibily post me an example of how to do this I would be
most grateful.
Thanks in advance.upeshk Guest
-
capturing the value of dinamically created textfield
Hi , I am dynamically created cells for a table at runtime on an jsp form. The last cell of each row contains a Textfield in which the user will... -
Capturing Data of Dynamically Created TextBox's
Hi there, I am dynamically created a table at runtime on an aspx form. The last cell of each row contains a TextBox in which the user will enter... -
How to antialias text for textfield created using createTextField
Hi below are my codes. I tried to use the font Eurostile-Bold for the text "What are the main institutions" which i will assign to a textfield... -
assign textformat to created textfield
hi! i create an empty textfield and try to format it using this.createTextField("mytext", 55, 250, 250, 400, 300); myFormat = new...



Reply With Quote

