mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-06 15:07:21 +00:00
bugfix 20
This commit is contained in:
@@ -218,6 +218,10 @@ function processAndAppendReturn(data) {
|
||||
if (index > -1) {
|
||||
labels.splice(index, 1);
|
||||
}
|
||||
var index = labels.indexOf('order');
|
||||
if (index > -1) {
|
||||
labels.splice(index, 1);
|
||||
}
|
||||
var questions = [];
|
||||
for (var j = 0; j < labels.length; j++) {
|
||||
questions.push([labels[j], data[labels[j]]]);
|
||||
@@ -230,7 +234,7 @@ function processAndAppendReturn(data) {
|
||||
document.getElementById('FormData').innerHTML += questions[j][0];
|
||||
if (questions[j][1]['type'] == 'shortText') {
|
||||
document.getElementById('FormData').innerHTML += "<input id=''" + questions[j][0] + "' type='text'></input>";
|
||||
} else if (questions[j][1]['type'] == 'longText') {
|
||||
} else if (questions[j][1]['type'] == 'textField') {
|
||||
document.getElementById('FormData').innerHTML += "<textarea id=''" + questions[j][0] + "' rows='4' cols='50''></textarea>";
|
||||
} else if (questions[j][1]['type'] == 'stepper') {
|
||||
document.getElementById('FormData').innerHTML += "<span id='" + questions[j][0] + "'><input type='button' onclick=\"dec('" + questions[j][0] + "')\" value='-'></input>" + (questions[j][1]['defaultValue']).toString() + "<input type='button' onclick=\"inc('" + questions[j][0] + "')\" value='+'></input></span>";
|
||||
|
Reference in New Issue
Block a user