XML Binding Language (XBL, sometimes also called Extensible Bindings Language) is a language for describing bindings that can be attached to elements in other documents. The element that the binding is attached to, called the bound element, acquires the new behavior specified by the binding.
4
votes
1answer
614 views
How do I get -moz-binding to work for ellipsis with data:text/xml?
We have a lot of elements on the project I am working on that use ellipsis styles, which, of course, work fine with pure CSS in all major browsers but FireFox. We implemented the -moz-binding fix for ...
3
votes
1answer
99 views
Is “indie” app development for Xbox 360 possible?
Microsoft has introduced App Hub as a publishing portal for WP7 and Xbox 360. However, for the Xbox 360, there only seems to be support for adding and Xbox Live Indie Game project. Given the recent ...
3
votes
2answers
272 views
Xul element is not showing back after set it “hidden”
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"?>
...
2
votes
1answer
71 views
Can an Orbeon event in an XBL be dispatched from Javascript?
Orbeon version: Orbeon Forms 3.8.0.201005270113
I have the following code in a Javascript file. This code is executed, but it seems like the model in the XBL is not found.
...
2
votes
1answer
154 views
How to extend a Xul button and make it focusable?
When I extends this button in my XBL:
<binding id="myFancyButton" extends="chrome://global/content/bindings/button.xml#button">
how do I make it a focusable button?
2
votes
1answer
99 views
Why when I add the CSS file my list gets rid of “YouTube” item?
main.xul
<?xml version="1.0"?>
<?xml-stylesheet href="main.css" type="text/css"?>
<window id="main" class="MainClass" title="MY TEST" width="640" height="480" ...
1
vote
1answer
85 views
orbeon: applying xslt transform in xbl on bound document
In Orbeon Forms I need to create a component (using XBL) that when bound to an instance like
<OCinstructionitem>
<OCp>paragraph 1</OCp>
<OCp>paragraph 2 <OCem>with ...
1
vote
1answer
43 views
XForms: How do I use a select1 to render a radio group with NO item selected
I am using XBL to render various controls on my XForm. One of these is a radio group with 4 options. I am using appearance="full" and an itemset for the data itself. However, when the radio group is ...
1
vote
1answer
51 views
XBL doesn't work well on panel?
I have found that the xbl element won't init before it shows up. So when I add an xul box element to panel,and bind it to my xbl ,I can't use like this :box.xblMethod(),FF will throw xblMethod is ...
1
vote
2answers
147 views
how to add/include js file in xbl?
I've read around and found techniques to add js file inside XBL, but the techniques don't work.
I tried to declare the tag: <'script src='test.js''>
and <'script src='chrome://content/test.js ...
1
vote
1answer
68 views
Is there a way to create a private method in XBL?
Is there a way to create a private method in XBL?
--update
The only documentation on MDN says nothing about private methods, but it's a wiki that's not always complete..
1
vote
3answers
84 views
Why this script is not running?
I'm trying to add a script to the beggin of my XBL file, but even the following test is not running, any idea why?
<bindings xmlns="http://www.mozilla.org/xbl"
...
1
vote
2answers
165 views
Why this XBL example is not working?
This example is from this Mozilla's page.
main.xul
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="main.css" ...
0
votes
1answer
8 views
In XBL, what is the difference between xbl:attr and xbl:text?
I am using Orbeon Forms, and here is some sample code from xbl-simple.xhtml
XHTML with XBL Component
<foo:test id="my-test-1" myref="value1" foobar="en fr"/>
I am trying to understand the ...
0
votes
0answers
39 views
What would cause Orbeon to produce a duplicate xmlns:xbl prefix in XHTML mode?
I'm working on an application that embeds Orbeon XForms renderer. I'm using this to generate XHTML rather than HTML. We have a form that uses 2 custom XBL components.
The XHTML that we pass to orbeon ...
0
votes
1answer
20 views
How to use a restful request to populate an XBL control?
I hope some of you XForms gurus can help. I have a large XFroms model that is populated via a bunch of xbl controls. One of the controls needs to use the XML that is retrieved from a restful url which ...
0
votes
0answers
57 views
what is the right way of loading javascript module in the xbl/ xul file?
I am developing an extension in Firefox. I want to load a simple javascript module to my xbl file. I have followed the instructions in here but I don't get any results. In fact when I call the method ...
0
votes
1answer
75 views
Why this handler is not restricted to CTRL+L?
I have a XBL handler with the following signature:
<handler event="keypress" modifiers="control" keycode="DOM_VK_L">
As you see, it should be fired when the user press CTRL+L. But, for some ...
0
votes
2answers
132 views
Best approach to avoid javascript's “this” mistakes in XBL
Talking about XBL is not exactly talking about javascript. So I'll create this question that's related to this one, but now about XBL, where I'm not the creator of the root javascript code, but just ...
0
votes
2answers
99 views
Calling a method from XBL
From a XBL method, when I need to call another method, I do like:
<method name="myMethod_1">
<body>
<![CDATA[
// do staff
...
0
votes
1answer
143 views
Why in Xul's XBL I can't call a method from window.opener?
I have a XBL method:
<method name="getValue">
<body>
<![CDATA[
return "TEST"
]]>
</body>
...
0
votes
1answer
48 views
Can I give a XBL handler a name to call it?
Can I give a XBL handler a name, so I can call it from my javascrip like I do with XBL methods?
0
votes
1answer
180 views
Conditionally include javascript file in xbl
Title says it all. Can I conditionally include javascript file and css files.
<xbl:script src="/apps/xforms-sandbox/samples/myfile.js" />
Can this be done conditionally?
0
votes
1answer
471 views
How to implement datatable xbl control to Orbeon Form Builder Xform
I am new to xforms - using Orbeon Form Builder 3.8 PE. I have read about advanced xbl controls like 'Alert Dialog' and 'Datatable'. These would be very useful in my application, but I cannot bridge ...
0
votes
3answers
66 views
How to include a .js file in my XBL?
Is there a way to include a javascript file to a XBL instead of copy all the script to it?