HTML code
I want to display object values in this form in <p or easier solutions
JavaScript
x
23
23
1
<div class="control-form-id">
2
<label for="id">Id:</label>
3
<input type="text" name="id" id="id" required>
4
<button type="button" onclick="JSinHTML();" id="search" >Search</button>
5
</div>
6
7
<div class="serial">
8
<label for="serial">Serial number:</label>
9
<p id="serial">result</p>
10
</div>
11
12
<script>
13
function JSinHTML(){
14
let id_form ={}
15
id_form.input = document.getElementById("id").value
16
alert(id_form.input);
17
google.script.run.main(id_form);
18
document.getElementById("id").value = "";
19
}
20
21
22
</script>
23
GOOGLE SCRIPT code
function findId returns row number by typed id
JavaScript
1
11
11
1
function main(JSinHtml){
2
let numberRow = findId(JSinHtml.input);
3
Logger.log("input in main " + JSinHtml.input);
4
let toHtml = {};
5
toHtml.id = sheet_spis.getRange(numberRow, column_id).getValue();
6
toHtml.serial_number = sheet_spis.getRange(numberRow, column_serialnr).getValue();
7
toHtml.size = sheet_spis.getRange(numberRow, column_size).getValue();
8
toHtml.type = sheet_spis.getRange(numberRow, column_type).getValue();
9
Logger.log(toHtml); //I want to display separately this values in few <p>
10
}
11
Advertisement
Answer
In your situation, how about the following modification?
HTML & Javascript side:
From
JavaScript
1
2
1
google.script.run.main(id_form);
2
To:
JavaScript
1
4
1
google.script.run.withSuccessHandler(e => {
2
document.getElementById("serial").innerHTML = e.serial_number;
3
}).main(id_form);
4
Google Apps Script side:
From
JavaScript
1
2
1
Logger.log(toHtml); //I want to display separately this values in few <p>
2
To:
JavaScript
1
3
1
Logger.log(toHtml);
2
return toHtml;
3
Note:
- From
<p id="serial">result</p>
, I guessed that you might have wanted to put the value ofserial_number
. So, I proposed it. If you want to show the whole object oftoHtml
, please modifydocument.getElementById("serial").innerHTML = e.serial_number;
todocument.getElementById("serial").innerHTML = JSON.stringify(e);
.