Mozilla.dev.tech.xul
Contents
- 1 Newsgroup
- 2 Authors
- 3 Weekly Summaries
- 4 FAQ
- 4.1 How do I remove the file location header included in the default printing setting?
- 4.2 Is it possible to load the template with XML file and not rdf based source?
- 4.3 How can I manage scrolling outside the browser?
- 4.4 DrawWindow with transparent background possible?
- 4.5 I want to create dymanically multiple elements with datasource attribute. I want to create XUL element in the javascript, assign datasources/ref/template attribute to it so that the content is generated from the rdf datasource
- 4.6 How can I send XML/XUL document fragrement to the server instead of using GET or POST variables?
- 4.7 I get the error: Gecko MinVersion requirement not met.
- 4.8 Is Localizing remote XUL possible?
- 5 UnAnswered Questions (UAQ)
Newsgroup
Authors
- Michael Lau
- Paul St-Denis
Weekly Summaries
NOTE: these should be turned into links to separate pages.
FAQ
How do I remove the file location header included in the default printing setting?
- See http://www.xulplanet.com/references/elemref/ref_iframe.html, the first user note at the bottom. Change this line
var settings = PrintUtils.getPrintSettings();
- to this
var settings = PrintUtils.getPrintSettings().clone();
- settings.docURL = " "; // suppress URL on printout
- Other options you can modify are documented here:
Is it possible to load the template with XML file and not rdf based source?
- That feature isn't available yet. The code that implements it is waiting to be reviewed. See bug https://bugzilla.mozilla.org/show_bug.cgi?id=321171
How can I manage scrolling outside the browser?
- This problem can be solved by capturing the focus events and giving the focus to another xul element or capturing and canceling the keypress events
DrawWindow with transparent background possible?
With Mozilla trunk --------------------------------------------------------- nsIDOMCanvasRenderingContext2D* c2d = //coming from <canvas> nsIDOMWindow* window = //coming from <iframe> c2d->DrawWindow( window, ..., "rgba(0,0,0,0)"); ---------------------------------------------------------
- This makes canvas background transparent if background is transparent but when "window" is coming from top level content window, background is not transparent.
- So how can I do this same way as <iframe>? You can't right now
I want to create dymanically multiple elements with datasource attribute. I want to create XUL element in the javascript, assign datasources/ref/template attribute to it so that the content is generated from the rdf datasource
- Create the element, set the datasources attribute then add the element to the document. This should then create the database.
How can I send XML/XUL document fragrement to the server instead of using GET or POST variables?
- You can send documents using send(document), so you should be able to insert the fragment into an empty document.
I get the error: Gecko MinVersion requirement not met.
Visit http://developer.mozilla.org/en/docs/Getting_started_with_XULRunner#Step_4:_Set_up_application.ini to find out how to properly set up the application.ini file.
Is Localizing remote XUL possible?
Loading remote DTDs for XML documents is currenty not yet supported in XUL.
- The following bugs were reported on this issue.
- https://bugzilla.mozilla.org/show_bug.cgi?id=22942
- https://bugzilla.mozilla.org/show_bug.cgi?id=133698