Question 1: This code should take care of giving unique ids to your textBox with out any gaps in the id number. I achieve this by using a function getID which keeps track of available ids in an array. Whenever we remove an element, the array value with that index is set to -1. We search for "-1" using indexOf and keep track of unused ID.
var index = [];
// Array starts with 0 but the id start with 0 so push a dummy value
index.push(0);
// Push 1 at index 1 since one child element is already created
index.push(1)
function addkid() {
var div = document.createElement('div');
var id = getID();
// Set this attritube id so that we can access this element using Id
div.setAttribute("id","Div_"+id);
div.innerHTML = 'Child_' + id + ': <input type="text" name="child_' + id + '"/>' + ' <input type="button" id="add_kid()_' + id + '" onclick="addkid()" value="+" />' + ' <input type="button" id="rem_kid()_' + id + '" onclick="remkid('+id+')" value="-" />';
// inside of passing this parameter in remkid we pass id number
document.getElementById('kids').appendChild(div);
}
function remkid(id) {
// use the id arugment to get the div element using unique id set in addkid
try{
var element = document.getElementById("Div_"+id)
element.parentNode.removeChild(element);
index[id] = -1;
//id number is = index of the array so we set to -1 to indicate its empty
}
catch(err){
alert("id: Div_"+id)
alert(err)
}
}
function getID(){
var emptyIndex = index.indexOf(-1);
if (emptyIndex != -1){
index[emptyIndex] = emptyIndex
return emptyIndex
} else {
emptyIndex = index.length
index.push(emptyIndex)
return emptyIndex
}
}
<form action ="Your app script link here" method="post">
Name:
<input type="text" name="name">
<br/>
<div id="kids">
Child_1:
<input type="text" name="child_1">
<input type="button" id="add_kid()_1" onclick="addkid()" value="+" />
</div>
Phone:
<input type="text" name="phone">
<br/>
<input type="submit" name="submit" value="submit" />
</form>
Question 2,3: You can pass the value of the form to a app script using the form tag:
<form action= "app script web app link" method ="post/get">
Now to access the data using appscripts, we will have to make a web app and get a link to it. This will help you get started:https://developers.google.com/apps-script/guides/web
You will create a appscript like this:
function doPost(e) {
var ss = SpreadsheetApp.openById("Your Spd ID")
var sheet = ss.getSheetByName("Sheet1")
var response = []
response[0] = new Date()
response[1] = e.contentLength
response[2] = JSON.stringify(e.parameters)
sheet.appendRow(response)
return HtmlService.createHtmlOutput('<b>Hello, world!</b>');
}
And your sheet1 will receive a response like so:
2/12/2017 14:17:37 47 {"parameter":{"submit":"submit","child_1":"asd","phone":"1234","name":"jagan"},"contextPath":"","contentLength":47,"queryString":null,"parameters":{"submit":["submit"],"child_1":["asd"],"phone":["1234"],"name":["jagan"]},"postData":{"type":"application/x-www-form-urlencoded","length":47,"contents":"name=jagan&child_1=asd&phone=1234&submit=submit","name":"postData"}}