111139
(حازم قرعاوي)
August 20, 2021, 12:21am
#1
i was creat app by kodular to send data to google sheet using javascript
the app is working only when the data is written in english
but when the data written in arabic … the data hide
Can you show us your java codes
Did you use this block to decode your text?
Or Did you try this script method ?
ok, i am sharing you very simple one. there by you can send only one text box value to the sheet.
var ss = SpreadsheetApp.getActive();
var sh = ss.getSheets()[0];
function doPost(e) {
var data = JSON.parse(e.postData.contents);
sh.appendRow(data);
return ContentService.createTextOutput(data);
}
function doGet(e) {
var data = JSON.stringify(sh.getDataRange().getDisplayValues());
return ContentService.createTextOutput(data);
}
decompile it, and use this block to send whatever…
system
(system)
Closed
May 13, 2022, 6:46pm
#3
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.