javascript add row to table

1
0
-1

Hey I just started to work on a javascript to add a row to a table so later on i can extend the script with the logic to add content of fields to the table in that row. I created a table called dataTable in the form.

two buttons with the code:

simpel1: <INPUT type="button" value="Add Row" onclick="addRow('dataTable');" />
simpel2: <INPUT type="button" value="Delete Row" onclick="deleteRow('dataTable');" />

added a html widget with the following code:

    <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 = "checkbox";
            element1.name="chkbox[]";
            cell1.appendChild(element1);
            var cell2 = row.insertCell(1);
            cell2.innerHTML = rowCount + 1;
            var cell3 = row.insertCell(2);
            var element2 = document.createElement("input");
            element2.type = "text";
            element2.name = "txtbox[]";
            cell3.appendChild(element2);
        }
        function deleteRow(tableID) {
            try {
            var table = document.getElementById(tableID);
            var rowCount = table.rows.length;
            for(var i=0; i<rowCount; i++) {
                var row = table.rows[i];
                var chkbox = row.cells[0].childNodes[0];
                if(null != chkbox && true == chkbox.checked) {
                    table.deleteRow(i);
                    rowCount--;
                    i--;
                }
            }
            }catch(e) {
                alert(e);
            }
        }
    </SCRIPT>

If i run the process locally it`s not working, how can this be?

Comments

Submitted by rafa brito on Wed, 05/27/2015 - 14:25

Hi,

I do that in a 5.10 of studio version and i dont have a problem with that, but i have a question about that...

How i can save this table in a arraylist variable from a conector script?

It is possible? Can you give a example?

Regards!

No answers yet.
Notifications