XBL is a declarative XML language which implements the publish/subscribe pattern. It is used to build extension for XUL applications, including the Firefox browser and the Komodo editor.

learn more… | top users | synonyms

0
votes
0answers
3 views

XBL Tabbrowser?

Is there some sort of tabbrowser implementation out there in XBL (eXtensive Binding Language) for use with XUL (XML UI Language)? I haven't been able to find one so far, and need one for the project ...
0
votes
0answers
8 views

How to add tooltip text to <html:div> element in XUL

I have the following XBL document. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE window [ <!ENTITY % commonDTD SYSTEM ...
0
votes
1answer
22 views

Insert HTML with XBL

Following this answer, I was able to insert some text with Firefox like this css body { -moz-binding: url(foo.xml#bar); } foo.xml <bindings xmlns="http://www.mozilla.org/xbl"> ...
1
vote
0answers
69 views

Is there any way to manipulate scrollbar using javascript in Firefox?

I am writing a UserChromeJS script (If you don't know what UserChromeJS is, please take a look at http://userchromejs.mozdev.org/)that turns the scrollbar into a floating one. Link to my script: ...
1
vote
1answer
35 views

Translate the labels in xbl component

I have a form built with Form Builder, containing an XBL component that is a little form with just xforms labels and inputs. I want to display the form (and by the way the component) in two languages ...
0
votes
1answer
67 views

How to create an XBL control that saves data in two elements?

I'm trying to tell Orbeon to group 2 fields together in order to capture 2 values as in: Pounds & Ounces. <xs:complexType name="rpm-weight"> <xs:sequence> <xs:element ...
0
votes
1answer
159 views

How to build a dynamic URL in javascript based on an Orbeon Xforms control value

I'm trying to create an Orbeon Forms XBL wrapper around a javascript media player control for inclusion in an XForms application. The URL of the media file must be constructed dynamically based on ...
2
votes
1answer
72 views

Do moz-behaviors work in Firefox 10?

I downloaded an example of moz-behaviors usage but it doesn't work in Firefox 10. Do I need to change something to make it work?
0
votes
1answer
51 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 ...
4
votes
1answer
645 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 ...
2
votes
1answer
145 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. ...
1
vote
1answer
106 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 ...
1
vote
1answer
213 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
106 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 ...
0
votes
1answer
30 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 ...
1
vote
1answer
62 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
0answers
93 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 ...
1
vote
2answers
232 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 ...
0
votes
1answer
95 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 ...
2
votes
1answer
84 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..
0
votes
2answers
208 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
118 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
186 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
58 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?
1
vote
3answers
92 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" ...
0
votes
1answer
223 views

Conditionally include javascript file in xbl

Can I conditionally include javascript file and css files. <xbl:script src="/apps/xforms-sandbox/samples/myfile.js" /> Can this be done conditionally?
3
votes
2answers
522 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"?> ...
0
votes
1answer
868 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 ...
2
votes
1answer
200 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?
0
votes
3answers
82 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?
1
vote
2answers
288 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" ...
2
votes
1answer
106 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" ...
4
votes
1answer
741 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 ...