Updated

Here's an even simpler example showing the failure (it should hide the img after press "z" and show it after press "x"):

My test.xul:

<?xml version="1.0" encoding="UTF-8"?>

<?xml-stylesheet href="chrome://test/content/test.css" type="text/css"?>

<window id="desktop" width="640" height="480"
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

    <image id="img" src="image.png" flex="1"/>

</window>

My test.css:

#desktop { -moz-binding: url("chrome://test/content/test.xml#desktop"); }

My test.xml:

<?xml version="1.0"?>

<bindings xmlns="http://www.mozilla.org/xbl"
         xmlns:xbl="http://www.mozilla.org/xbl"
         xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

    <!-- Desktop binding & Key handlers -->
    <binding id="desktop">
        <handlers>
            <handler event="keypress" key="Z" >
                <![CDATA[
                    var img = getElementById("img");
                    if(img)
                        img.hidden = true;
                ]]>
            </handler>
            <handler event="keypress" key="X" >
                <![CDATA[
                    var img = getElementById("img");
                    if(img)
                        img.hidden = false;
                ]]>
            </handler>
        </handlers>
    </binding>

</bindings>

It's not showing back after hidden, any idea how to fix it? Is it a xulrunner bug? I'm running it with xulrunnet 1.9.2.12.

link|improve this question

I'm not sure of understanding why are you using visibility: collapse instead of visibility: hidden – Joel Alejandro Nov 12 '10 at 17:42
@Joel Alejandro the behavior is the same here. – Tom Brito Nov 12 '10 at 18:50
feedback

2 Answers

up vote 1 down vote accepted

It was a problem with Xulrunner 9.0.2.12, it works well with 9.0.2.10.

link|improve this answer
feedback

Use vbox.setAttribute("hidden", "true"); and vbox.removeAttribute("hidden");

link|improve this answer
Or even just vbox.hidden = true , vbox.hidden = false – MatrixFrog Nov 13 '10 at 0:11
@MatrixFrog in my early days with XUL I fought a lot with the nuances between attributes and properties, I eventually settled into just using attributes, almost always. You're probably right though. :-) – pc1oad1etter Nov 13 '10 at 2:27
This variations are resulting the same behavior. I'll try to make a simple sample of a full app here and post it. – Tom Brito Nov 17 '10 at 16:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.