Login Register

xml

extending dojo.query to fully support xml

About dojo.query and XML

Apparently dojo.query drops tag names to lowercase which is makes it incompatible with xml documents that are not already in lowercase.

I'm interested in fixing this but there's probably some good reason for this behavior. Could someone outline a good approach for this patch that will not cause regressions against the HTML dom or compromise the performance of the system?

Thanks!

Dojo XML Doctype/DTD...?

I'm curious, and I have been wondering this for a while now, are there any plans to release a document type definition that supports the Dojo proprietary XML attributes?

Trying to write a simple xmlstore backend in PHP

Hi,

I've tried to write a simple backend to provide an xmlstore some data, and no matter what I do I get the following error;

message : document has no properties
fileName : http://supercodex.com/mansphp/dojo.1.0.1/dojo/dojo.js.uncompressed.js
lineNumber : 678
stack : (null,[object Object])@http://supercodex.com/mansphp/dojo.1.0.1/dojo/dojo.js.uncompressed.js:678
(null)@http://supercodex.com/mansphp/dojo.1.0.1/dojo/dojo.js.uncompressed.js:591
()@http://supercodex.com/mansphp/dojo.1.0.1/dojo/dojo.js.uncompressed.js:2298

Question about onDownloadEnd event

Hi,
I have successfully used dojo.connect() to call a custom Javascript method (in global scope) when the onDownloadEnd event fires on a TitlePane I have.

function sourceXMLHandler() {
alert('here');
}

dojo.addOnLoad(function() {
var mySC = new dijit.layout.LayoutContainer( {title:"Source Container"}, dojo.byId("sourceContainer"));
var res_1 = new dijit.TitlePane({id: 'res_1', widgetId: 'res_1', style: 'padding-bottom: 15px;', title:'My Source', href:'/ts2/query/?sourceID=1&searchID=48'});
dojo.connect(res_1, 'onDownloadEnd', 'sourceXMLHandler');

Syndicate content