只是根据您自己的答案提出建议:
您可以通过在某处使用从其 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;
}