ボタンをクリックしたときに、数値をどのように加算または減算しますか。シンプルに言いたい
if (button.click){
num++;
}
Google アプリのスクリプト ボタンを使用して、そのようなことを行うにはどうすればよいですか? クリック ハンドラーを使用したことがないので、物事は少し単純ではないように思えます。おそらく、私が見逃している単純なものです。助けてくれてありがとう。
ボタンをクリックしたときに、数値をどのように加算または減算しますか。シンプルに言いたい
if (button.click){
num++;
}
Google アプリのスクリプト ボタンを使用して、そのようなことを行うにはどうすればよいですか? クリック ハンドラーを使用したことがないので、物事は少し単純ではないように思えます。おそらく、私が見逃している単純なものです。助けてくれてありがとう。
このデモコードを見てください:
var sh = SpreadsheetApp.getActiveSheet();
var ss = SpreadsheetApp.getActiveSpreadsheet();
//
function move() {
var app = UiApp.createApplication().setTitle("move test")
.setHeight(100).setWidth(400).setStyleAttribute("background-color","beige");
var panel = app.createVerticalPanel();
var next = app.createButton('next').setWidth('180');
var chkmode = app.createCheckBox("moving mode (checked = up/dwn, unchecked=L/R)").setValue(false).setName('chkmode');
panel.add(next).add(chkmode);
var handler = app.createServerHandler('click').addCallbackElement(panel);
next.addClickHandler(handler);
app.add(panel);
ss.show(app);
}
//
function click(e) {
var app = UiApp.getActiveApplication();
var activeline = sh.getActiveRange().getRow();// get the row number of the selected cell/range
var activecol = sh.getActiveRange().getColumn();// get the row number of the selected cell/range
var chkmode=e.parameter.chkmode;// this returns a string, that's why true is written "true" just below...
if(chkmode=="true"){
++activeline
}else{
++activecol} // the ++ can be before or after the var name, your choice ;-)
var sel=sh.getRange(activeline,activecol);
sh.setActiveSelection(sel);// make the next row or column active
return app;
}
編集 :(二次的な質問に続いて)セルの内容を示すラベルを取得するには、ハンドラー関数でこのコードを使用できます:
function click(e) {
var app = UiApp.getActiveApplication();
var activeline = sh.getActiveRange().getRow();// get the row number of the selected cell/range
var activecol = sh.getActiveRange().getColumn();// get the row number of the selected cell/range
var cellvaluestring = sh.getActiveRange().getValue().toString();
var label = app.getElementById('label');
label.setText(cellvaluestring);
var chkmode=e.parameter.chkmode;
if(chkmode=="true"){
activeline++
}else{
activecol++}
var sel=sh.getRange(activeline,activecol);
sh.setActiveSelection(sel);// make the next row active
return app;
}
Ui 定義では、次のようにラベルを作成する必要があります。
var label = app.createLabel("test Label with text that will be modified on click").setId('label');
panel.add(label);