以下代码让我头疼。 这是一个非常简单的应用程序,有2个单选按钮和一个按钮。这个应用程序的想法是在电子表格中记录所选单选按钮的值。 现在,如果我选择第一个单选按钮(“一个”)然后更改为第二个单选按钮(“两个”)然后再返回“一个”并单击“录制”按钮,该应用程序将记录3次电子表格。它有点累积选择。
不知道我是否清楚明白,但以下是模拟问题的步骤:
1-运行以下应用程序; 2-选择单选按钮“一”,然后再选择“两个”和“一个”,然后按“录制”按钮; 3-检查电子表格中的重复值。
点击单选按钮的次数越多,记录的重复值就越多。
知道为什么会这样,我怎么能克服这个问题?
function myAppFunction() {
var mydoc = SpreadsheetApp.getActiveSpreadsheet();
var app = UiApp.createApplication().setTitle('Here is the title bar');
var panel = app.createVerticalPanel().setId('panel');
//using setName will give you the ability to get the value
var myRadio1 = app.createRadioButton("group","one").setName('myRadio1').setId('myRadio1');
var myRadio2 = app.createRadioButton("group","two").setName('myRadio2').setId('myRadio2');
var button = app.createButton("Gravar").setId("record_");
//A label will be used to give feedback on the value of the checkBox
var infoLabel = app.createLabel('Check the box and click submit').setId('infoLabel');
//handlers
var handler = app.createServerChangeHandler('radio1');
handler.addCallbackElement(panel);
myRadio1.addClickHandler(handler);
var handler2 = app.createServerChangeHandler('radio2');
handler2.addCallbackElement(panel);
myRadio2.addClickHandler(handler2);
//put everything in the UI
panel.add(myRadio1);
panel.add(myRadio2);
panel.add(button);
panel.add(infoLabel);
app.add(panel);
mydoc.show(app);
}
function radio1(e){
var app = UiApp.getActiveApplication();
app.getElementById('myRadio2').setValue(false);
app.getElementById('infoLabel').setText('one is: ' + e.parameter.myRadio1);
var panel = app.getElementById("panel");
var button = app.getElementById("gravar");
var handler = app.createServerClickHandler("record_");
handler.addCallbackElement(panel);
button.addClickHandler(handler);
return app;
}
function radio2(e){
var app = UiApp.getActiveApplication();
app.getElementById('myRadio1').setValue(false);
app.getElementById('infoLabel').setText('two is: ' + e.parameter.myRadio2);
var button = app.getElementById("gravar");
var handler = app.createServerClickHandler("gravar_");
handler.addCallbackElement(app.getElementById("panel"));
button.addClickHandler(handler);
return app;
}
function record_(e) {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName("Sheet1");
var lastRow = sheet.getLastRow();
var freeCell = sheet.getRange("A1").offset(lastRow, 0);
freeCell.setValue(e.parameter.myRadio1);
}
答案 0 :(得分:1)
单选按钮必须具有相同的名称才能在正常的异或模式下工作,如果您参考doc,您会注意到在标准面板中使用时需要这样做。 这是一个简单的例子:
function radiotest() {
var app = UiApp.createApplication();
var panel = app.createVerticalPanel();
var radioValue = app.createTextBox();
radioValue.setId("radioValue").setName("radioValue").setVisible(false);
for(var i = 1; i < 10; i++){
var name = 'choice '+i;
var handler = app.createClientHandler().forTargets(radioValue).setText(name);
panel.add(app.createRadioButton('radio',name).addValueChangeHandler(handler));
}
panel.add(radioValue);
var getit=app.createButton("Valide").setId("val");
panel.add(getit)
var handler = app.createServerHandler("valide")
handler.addCallbackElement(panel)
getit.addClickHandler(handler);
app.add(panel);
SpreadsheetApp.getActiveSpreadsheet().show(app);// show app
}
//
function valide(e){ ;// This function is called when key "validate" is pressed
var sh = SpreadsheetApp.getActiveSheet();
var ss = SpreadsheetApp.getActiveSpreadsheet();
var RadioButton = e.parameter.radioValue;
sh.getRange('A1').setValue(RadioButton);
var app = UiApp.getActiveApplication();
return app;
}
答案 1 :(得分:1)
我不了解您的代码的行为,但我认为它不合适且太复杂。
首先你创建两个单选按钮,将它们的名称设置为“group”,这是正确的,但是在创建之后,你立即用“myRadio1”和“myRadio1”覆盖它们的名字,这不是错误的,但是没有用,因为它强制您将服务器更改处理程序添加到每个单选按钮。
如果您将两个单选按钮保留为同一名称“group”,则单击它们时它们会自动相互切换。因此,您不需要为它们添加点击处理程序。
因为它们共享相同的名称:“group”,您将能够访问其状态(如果选择了第一个单选按钮,则为“false”,如果选择了第二个单选按钮,则为“true”),使用“e.parameter.group “验证按钮的单击处理程序的回调函数中的参数。
以下是您的代码简化和修复:
function myAppFunction() {
var mydoc = SpreadsheetApp.getActiveSpreadsheet();
var app = UiApp.createApplication().setTitle('Here is the title bar');
var panel = app.createVerticalPanel().setId('panel');
// Create the radio buttons and add it to the panel
var myRadio1 = app.createRadioButton("group","one");
var myRadio2 = app.createRadioButton("group","two");
panel.add(myRadio1);
panel.add(myRadio2);
// Create the apply button, add click handler and add it to the panel
var button = app.createButton("Gravar").addClickHandler(app.createServerHandler("record_").addCallbackElement(panel));
panel.add(button);
// Create the label and add it to panel
var infoLabel = app.createLabel('Check the box and click submit');
panel.add(infoLabel);
// Add the panel in the GUI
app.add(panel);
// Show the GUI in the spreadsheet
mydoc.show(app);
}
function record_(e) {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName("Sheet1");
var lastRow = sheet.getLastRow();
var freeCell = sheet.getRange("A1").offset(lastRow, 0);
freeCell.setValue(e.parameter.group);
}