0

我正在尝试为文本框编写一个通用服务器处理程序,当文本框获得焦点时突出显示文本:

function onFocusHighlight(e) {
  var app = UiApp.getActiveApplication();
  var widget = app.getElementById(e.parameter.source);
  var widgetValue = e.parameter.widgetName; // how can I get widgetName from source???  
  widget.setSelectionRange(0, widgetValue.length);  
  return app;
}

我可以从 e.parameter.source 确定 widgetValue 吗?

4

3 回答 3

0

我发现只要widgetNamewidgetId相同,我可以确定widgetValue如下:

function onFocusHighlight(e) {
  var app = UiApp.getActiveApplication();
  var widgetId = e.parameter.source;
  var widgetName = widgetId; // name MUST match id to retrieve widget value      
  var widgetValue = e.parameter[widgetName]; // not sure why this syntax works???

  var widget = app.getElementById(widgetId);  
  widget.setSelectionRange(0,widgetValue.length);  

  return app;
}

我现在唯一的问题是了解e.parameter[widgetName]语法如何/为什么实际工作。拥有一个不依赖于相同价值widgetName的解决方案也很棒。widgetId

于 2013-01-24T22:34:22.877 回答
0

var widget = app.getElementById(e.parameter.source).setName("widgetName")

然后获取widgetValue:

var widgetValue = e.parameter.widgetName

检查https://developers.google.com/apps-script/uiapp以了解setName.

于 2013-01-24T13:21:50.780 回答
0

只是根据您自己的答案提出建议:

您可以通过在某处使用从其 ID 获取小部件名称的转换表来使其工作。

例如,您可以定义:

  ScriptProperties.setProperties({'widgetID1':'Name1','widgetID2':'name2'},true)

接着

 widgetvalue = e.parameter[ScriptProperties.getProperty(e.parameter.source)]

我没有测试这段代码,但它似乎合乎逻辑;-),如果没有,请告诉我(我现在没有时间测试它)

编辑:按预期工作,这是显示结果的测试表,下面的测试代码。

function Test(){
  var app = UiApp.createApplication().setTitle('test');
  app.add(app.createLabel('Type anything in upper textBox and then move your mouse over it...'))
  var p = app.createVerticalPanel()
  var txt1 = app.createTextBox().setId('txt1').setName('Name1').setValue('value in TextBox1')
  var txt2 = app.createTextBox().setId('txt2').setName('Name2').setValue('waiting to mouseOver textBox1')
  p.add(txt1).add(txt2)
  app.add(p)
  var handler = app.createServerHandler('mouseOver').addCallbackElement(p);
  txt1.addMouseOverHandler(handler); 
  ScriptProperties.setProperties({'txt1':'Name1','txt2':'Name2'},true);//save the name, only txt1 will be used here  
  var ss=SpreadsheetApp.getActiveSpreadsheet()
ss.show(app)
}

function mouseOver(e) {
  var app = UiApp.getActiveApplication();
  var widget = app.getElementById(e.parameter.source);
  var widgetValue = e.parameter[ScriptProperties.getProperty(e.parameter.source)]; // ScriptProperties knows the Widget's name 
  app.getElementById('txt2').setValue(widgetValue) ;// Use the other widget to show result
  return app;
}
于 2013-01-24T22:59:12.510 回答