开发者

FF extension : goUpdateCommand not calling the command

开发者 https://www.devze.com 2023-03-09 06:43 出处:网络
Firefox version : 4.0.1 I have a commandset which fires when something is selected. The commandset is working fine. If I put a simple window.alert(\'test\'); it does fire. However when I try to call

Firefox version : 4.0.1

I have a commandset which fires when something is selected.

The commandset is working fine. If I put a simple window.alert('test'); it does fire. However when I try to call another c开发者_JAVA百科ommand using goUpdateCommand, it does not call it.

The code in the browserOverlay.xul is as below :

<command id="cmd_testselect" oncommand="window.alert('command fired');"/>

<commandset commandupdater="true"

events="select"

oncommandupdate="goUpdateCommand('cmd_testselect');"/>

Note : I have added the globalOverlay.js as below :

<script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>

Any ideas what I might be doing wrong ?


I think you actually meant to call goDoCommand() and not goUpdateCommand().

0

精彩评论

暂无评论...
验证码 换一张
取 消