转自JIM Wang:把 isv.config.xml 按钮事件移动到 entity.onload()
生活随笔
收集整理的這篇文章主要介紹了
转自JIM Wang:把 isv.config.xml 按钮事件移动到 entity.onload()
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
把 isv.config.xml 按鈕事件移動到 entity.onload()
??<Entity?name="account">
????<ToolBar?ValidForCreate="0"?ValidForUpdate="1">
??????<Button?Icon="/_imgs/ico_18_debug.gif"?PassParams="1"?WinParams=""?WinMode="0"?Client="Web"?JavaScript="alert('Hello?World!');">
??????<Titles>
????????<Title?LCID="1033"?Text="A?button"?/>
??????</Titles>
??????<ToolTips>
????????<ToolTip?LCID="1033"?Text="A?button"?/>
??????</ToolTips>
????</Button>
????<ToolBarSpacer?/>
????</ToolBar>
??</Entity>
<!--?End?Custom?Entities?-->
</Entities>
{
????if(document.getElementsByTagName("LI")[index].title?==?"A?button")
????{
????????document.getElementsByTagName("LI")[index].onclick?=?Button_Click;
????????break;
????}
}
function?Button_Click()
{
????alert("Hello?World!");
}
大家都知道在ISV.CONFIG里可以添加按鈕,然后添加按鈕事件,比如下面:
<Entities>??<Entity?name="account">
????<ToolBar?ValidForCreate="0"?ValidForUpdate="1">
??????<Button?Icon="/_imgs/ico_18_debug.gif"?PassParams="1"?WinParams=""?WinMode="0"?Client="Web"?JavaScript="alert('Hello?World!');">
??????<Titles>
????????<Title?LCID="1033"?Text="A?button"?/>
??????</Titles>
??????<ToolTips>
????????<ToolTip?LCID="1033"?Text="A?button"?/>
??????</ToolTips>
????</Button>
????<ToolBarSpacer?/>
????</ToolBar>
??</Entity>
<!--?End?Custom?Entities?-->
</Entities>
?
有的時候基于維護和其他一些考慮,可以將這個按鈕事件放到entity的onload()事件里(比如你有大量的JavaScript代碼)。但是可能你已經注意到了,這種isv.config生成的按鈕 ID 是變化的,也就是說在onload()事件里,你無法通過 document.getElementById() 方法獲取這個按鈕,而isv.config.xml 文件本身又不支持ID設定,所以要用到不同的方法:
for?(var?index?in?document.getElementsByTagName("LI"))?{
????if(document.getElementsByTagName("LI")[index].title?==?"A?button")
????{
????????document.getElementsByTagName("LI")[index].onclick?=?Button_Click;
????????break;
????}
}
function?Button_Click()
{
????alert("Hello?World!");
}
?
由于按鈕是附屬在節點"LI"上面,所以可以先遍歷找到節點 "LI",然后確定哪個節點的Title=“A button”,就是在isv.config 里 指定的 Title。就可以實現這種功能了。
轉載于:https://www.cnblogs.com/yanluckly/archive/2008/11/18/1335774.html
總結
以上是生活随笔為你收集整理的转自JIM Wang:把 isv.config.xml 按钮事件移动到 entity.onload()的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 滚动条颜色样式设置 说明
- 下一篇: 学点 C 语言(9): if 语句