幾天來,我一直在努力為我的同事構建一個簡單的界面來記錄每一次客戶互動。他們將輸入以下內容:
- 客戶姓名(自動完成功能,來自電子表格列中所有姓名的超集)
- 互動日期
- 互動總結
- 前景(熱、暖、溫、冷)
我的問題是讓自動完成功能正常作業。
我已經看到@Tanaika 漂亮地布置了服務器端、HTML JS 等的執行緒,但我無法讓它作業。我的檔案已附上。謝謝你的時間!
HTML JS
<!DOCTYPE html>
<html>
<head>
<style>
label {
display: inline-block;
width: 150px;
}
</style>
<base target="_top">
<script>
function submitForm() {
google.script.run.appendRowFromFormSubmit(document.getElementById("feedbackForm"));
document.getElementById("form").style.display = "none";
document.getElementById("thanks").style.display = "block";
}
</script>
</head>
<body>
<datalist id="datalist">
<?!
var url = "https://docs.google.com/spreadsheets/d/13Ms0Cny3f-XaXS26s5AnrDT4H9c8p8OKRfwxPIQ9_CU/edit#gid=16760772";
var ss = SpreadsheetApp.openByUrl(url);
var ws = ss.getSheetByName("Pipeline");
var rng = ws.getRange('D2:D')
var rangeArray = rng.getValues();
var filArray = rangeArray.filter(function (el) {return el[0] != ""}).flat(); // Modified
console.info("hello read the data");
for (var i = 0; i < datalist.length; i ) { !?>
<option value="<?= datalist[i] ?>">
<?! } !?>
</datalist>
<div>
<div id="form">
<h1>Record Interaction</h1>
<form id="feedbackForm">
<label for="name">Parent Name</label>
<input type="text" id="name" name="name" list="datalist"><br><br>
<label for="doi">Date of Interaction</label>
<input id="today" type="date" name="doi"><br><br>
<label for="feedback">Interaction Summary</label>
<textarea rows=4 cols=35 id="feedback" name="feedback">Enter Interaction Summary Here...
</textarea><br><br>
<div>
<label for="temperature">Likely Candidate?</label><br>
<input type="radio" id="Hot" name="temperature" value="Hot">
<label for="yes">Hot</label><br>
<input type="radio" id="Warm" name="temperature" value="Warm">
<label for="yes">Warm</label><br>
<input type="radio" id="Tepid" name="temperature" value="Tepid">
<label for="yes">Tepid</label><br>
<input type="radio" id="Cold" name="temperature" value="Cold">
<label for="no">Cold</label><br><br>
<input type="button" value="Submit Interaction" onclick="submitForm();">
</form>
</div>
</div>
<div id="thanks" style="display: none;">
<p>Thank you for speaking to our customers!</p>
</div>
</body>
</html>
代碼.GS
function onOpen() {
SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
.createMenu('Customer Engagement')
.addItem('Record Interaction', 'showDialog')
.addToUi();
}
function showDialog() {
var html = HtmlService.createHtmlOutputFromFile('RecordInteraction.html')
.setWidth(400)
.setHeight(600);
SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
.showModalDialog(html, 'Please Enter Details');
}
function readData() {
var url = "https://docs.google.com/spreadsheets/d/13Ms0Cny3f-XaXS26s5AnrDT4H9c8p8OKRfwxPIQ9_CU/edit#gid=16760772";
var ss = SpreadsheetApp.openByUrl(url);
var ws = ss.getSheetByName("Pipeline");
var rng = ws.getRange('D2:D')
var rangeArray = rng.getValues();
var filArray = rangeArray.filter(function (el) {return el[0] != ""}).flat(); // Modified
console.info("hello read the data")
return filArray;
}
function activateSheetById(sheetId) {
//Access all the sheets in the Google Sheets spreadsheet
var sheets = SpreadsheetApp.getActive().getSheets();
//Filter out sheets whose Ids do not match
var sheetsForId = sheets.filter(function(sheet) {
return sheet.getSheetId() === sheetId;
});
//If a sheet with the Id was found, activate it
if(sheetsForId.length > 0)
sheetsForId[0].activate();
}
function appendRowFromFormSubmit(form) {
var row = [form.name, form.doi, form.feedback, form.temperature];
console.info("Appending Row");
activateSheetById(2059810756);
SpreadsheetApp.getActiveSheet().appendRow(row);
}
function makeUL(array) {
// Create the list element:
var namelist = document.createElement('ul');
for (var i = 0; i < array.length; i ) {
// Create the list item:
var item = document.createElement('li');
// Set its contents:
item.appendChild(document.createTextNode(array[i]));
// Add it to the list:
list.appendChild(item);
}
// Finally, return the constructed list:
return namelist;
}
uj5u.com熱心網友回復:
修改點:
- 在您的 HTML 中,使用了模板。在這種情況下,請使用
createTemplateFromFile代替createHtmlOutputFromFile。 - 的小腳本
<?!= ... ?>是Force-printing scriptlets(like printing scriptlets except that they avoid contextual escaping.)。參考
我認為這些是您的問題的原因。當這些點反映到你的腳本中時,它變成如下。
修改后的腳本:
Google Apps 腳本方面:
從:
function showDialog() {
var html = HtmlService.createHtmlOutputFromFile('RecordInteraction.html')
.setWidth(400)
.setHeight(600);
SpreadsheetApp.getUi() // Or DocumentApp or SlidesApp or FormApp.
.showModalDialog(html, 'Please Enter Details');
}
到:
function showDialog() {
var html = HtmlService.createTemplateFromFile('index.html');
html.data = readData();
SpreadsheetApp.getUi().showModalDialog(html.evaluate().setWidth(400).setHeight(600), 'Please Enter Details');
}
- 在這里,您的功能
readData()被使用。
HTML 和 Javascript 方面:
從:
<datalist id="datalist">
<?!
var url = "https://docs.google.com/spreadsheets/d/###/edit#gid=16760772";
var ss = SpreadsheetApp.openByUrl(url);
var ws = ss.getSheetByName("Pipeline");
var rng = ws.getRange('D2:D')
var rangeArray = rng.getValues();
var filArray = rangeArray.filter(function (el) {return el[0] != ""}).flat(); // Modified
console.info("hello read the data");
for (var i = 0; i < datalist.length; i ) { !?>
<option value="<?= datalist[i] ?>">
<?! } !?>
</datalist>
到:
<datalist id="datalist">
<? data.forEach(e => { ?>
<option value="<?= e ?>">
<? }); ?>
</datalist>
參考:
- HTML 服務:模板化 HTML
uj5u.com熱心網友回復:
向電子郵件對話框提出建議的示例
html:
<div id="emaildialog">
Recipient Search:<br />
<input id="rec" type="text" oninput="getSuggestions();" placeholder="Enter Search String slowly. Yellow=accessing server" size="50" /><br />
Suggestions:<br />
<div id="sugdiv" style="width:100%;background-color:#ffffff;"></div>
Recipients:<br />
<textarea id="recipients" cols="50" rows="4" placeholder="Sent to first recipient. Remaining recipients are blind copied."></textarea><br />
Message:<br />
<textarea id="msg" cols="50" rows="4" placeholder="Enter message to send with the attachments." >This is a copy of our apps Final Report.</textarea><br>
<input type="button" id="send" value="Create PDF and Send Email" onClick="createAndSendReport();" />
</div>
Javascript(使用 JQuery):
function updateDiv(vA){
var s='';
for(var i=0;i<vA.length;i ){
s ='<input type="button" id="btn-' i '" onClick="selectRecipient1(\'btn-' i '\')" value="' vA[i][0] '" />';
}
$('#sugdiv').html(s);
}
function getSuggestions(){
var txt=$('#rec').val();
if(txt.length>0){
$('#rec').css('background','yellow');
google.script.run
.withSuccessHandler(function(vA){
$('#rec').css('background','white');
//updateSelectList(vA);
updateDiv(vA);
})
.getSuggestions(txt)
}else{
updateSelectList([]);
}
}
谷歌應用腳??本:
function getSuggestions(s){
if(s){
var vA=[];
var cA=getAllContacts();
for(var i=0;i<cA.length;i ){
if(cA[i].toString().toLowerCase().indexOf(s.toLowerCase())>-1){
vA.push([cA[i][0]]);
}
}
}
return vA;
}
這段代碼大約有 5 年的歷史。它仍在原始應用程式中運行
轉載請註明出處,本文鏈接:https://www.uj5u.com/net/410890.html
標籤:
上一篇:在電子表格的每個單元格中查找值
