我有一個處理函數正在用電子表格中的值更新一個非常大的用戶界面。該表的rowindex來自一個callbackElement,作爲e.parameter.hidden
(隱藏是保存該值的小部件),並且我在該函數中增加/減少。是否可以在處理函數中更改callBackElement的值?
我有另一個處理函數,它搜索電子表格中的字符串值並返回一個rowindex,我分配給這個相同的隱藏小部件。
如果我引發了「搜索」的處理程序第一和然後「顯示」處理,我有我的用戶界面與「發現」的數據,這是好的,但需要在兩個不同的按鈕,兩個獨立的點擊更新。
現在我的問題:我怎麼能包括在「搜索處理函數」到「顯示處理」的呼叫,並通過所有e.parameters 但只修改e.parameter.hidden
的價值?
我知道e
是一個有很多鍵和值的對象,但我不知道如何操縱在那裏只是一個值...
搜索處理程序的代碼很短,是這樣這樣的:
function findname(e){ // this function is called by a handler triggered by a keypress on a textBox
var app = UiApp.getActiveApplication();
var hiddenD = app.getElementById('hiddenD');
var str = e.parameter.find ; // find is the textBox's name
var found = point(str);// point() is a function that returns the rowindex of the found value
hiddenD.setValue(found);// hiddenD is the hidden widget that I want to 'manipulate'
nextitem(e);// nextitem is the function that updates the UI and that is normally called by a handler on another button
return app
}
嗯,我希望這個問題是非常明顯的(這是不容易解釋),如果不是請向;-)
你好嗶嘰, 你的意思是:在去更新一個小部件的價值? https://productforums.google.com/d/topic/apps-script/lABoP-cJcGQ/discussion 此解決方案的工作原理,我已經使用了好幾次。 我假設你不是指 e.parameter.hidden =「new value」; doDisplay(e); – eddyparkinson 2012-07-30 00:56:36
謝謝Eddy,當我使用Waqar的解決方案時,小部件更新了它的'顯示值'(談論一個隱藏的小部件,這很有趣;-)在接下來的'返回'...感謝鏈接。 – 2012-07-30 07:59:11