My goal, simply put, is to highlight a cell range on one google sheet (the \'source\') and move it to another, different google sheet document (the \'target\'). The Target has
Here's a simple example of a radio dialog:
function radiosOnADialog() {
var ss=SpreadsheetApp.getActive();
var sh=ss.getActiveSheet();
var html='';
for(var i=0;i<10;i++) {
html+=Utilities.formatString('
%s','id'+ Number(i+1),'radio' + Number(i+1),' radio' + Number(i+1));
}
html+='
';
html+='';
var ui=HtmlService.createHtmlOutput(html);
SpreadsheetApp.getUi().showModelessDialog(ui, 'A Radio Dialog');
}
The Dialog: