0

GAS のパネル内のウィジェットにアクセスする方法はありますか?

何かのようなもの:

function clickHandler_(e) {
  var app = UiApp.getActiveApplication();
  var panel = app.getElementById(e.parameter.whatever); // short-cutting here
  for (var i=0; i<panel.widgets.length; i++) {
    var widget = panel.widgets[i];
    // do something with them
  }
  return app;
}
4

1 に答える 1

0

こんな単純なものはない。ウィジェットを追加するときにすべてのウィジェットに ID を与え、後で取得できるようにどこかに保存する必要があります。たとえば、パネル上のタグとして:

function doGet(e) {
  var app = UiApp.createApplication();
  ...
  var panel = app.createXYZPanel().setId('mypanel');
  var IDs = ''; //list of child widgets on this panel
  panel.add(widget.setId('id1'));
  IDs += ',id1';
  panel.add(widget2.setId('id2'));
  IDs += ',id2';
  //and so on...
  panel.setTag(IDs); //save the IDs list as a tag on the panel
  ...
  return app;
}

//...later on a handler
function handler(e) {
  var app = UiApp.getActiveApplication();
  //the panel or a parent must be added as callback of the handler
  var IDs = e.parameter.mypanel_tag.split(',');
  for( var i = 1; i < IDs.length; ++i ) { //skipping the 1st empty element
    var widget = app.getElementById(IDs[i]);
    //do something
  }
  return app;
}

ところで、あなたはおそらくそれを知っているでしょうが、あなたのコードには間違いがありましUiApp.getElementByIdapp.getElementById

于 2011-11-30T17:41:18.890 に答える