Tagged Questions

E4X is an extension to ECMAScript which allows for convenient handling of XML.

learn more… | top users | synonyms

6
votes
3answers
462 views

XML literals in JavaScript?

E4X (Ecma-357) is an extension to ECMAScript that adds XML literals as first-class primitives. That's awesome, but with only Mozilla and Adobe support (without V8 and IE support too), E4X is ...
5
votes
1answer
451 views

E4X with NodeJS

Is there any way to get E4X(ECMAScript) to work with NodeJS? It would really help to output slick html/xml without hassle/noise. It works fine using SpiderMonkey since it is natively implemented, ...
5
votes
3answers
668 views

E4X browser support

I'm trying to figure this out, but there's not much information. Which browsers support E4X, and why isn't it more widely adopted?
4
votes
5answers
1k views

Java: Ways to parse XML in E4X?

I was wondering if there was a way to parse XML using E4X, or something similar to E4X. Does such a framework / library exist? Thanks!
4
votes
4answers
3k views

E4X Add CDATA content

Basically I need to define a node name and its CDATA content using variables. var nodeName:String = "tag"; var nodeValue:String = "<non-escaped-content>"; Naively I thought this would work : ...
3
votes
2answers
315 views

Reading Non Standard Namespace XML using E4X in AS3?

I am trying to parse some XML in AS3 that I recieve thru a WebService call to C#. C# is serializing using a DataContract so the namespace is non standard. Here is what the xml looks like: <User ...
3
votes
4answers
115 views

Many names of JavaScript / ECMA

I was looking up newer functions of JavaScript and found ECMAScript/ECMA 5. Because I had never heard of it I looked in to it more and found that it comes in the form of different names such as: ...
3
votes
1answer
195 views

how to strip namespaces with e4x?

I have an arbitrary XML document provided by a URL. I also have an xpath-like expressions. var xml = <doc><node1><node2><node3>some ...
3
votes
1answer
1k views

Problem parsing XML using e4X & Flex 3

I am having difficultly parsing an XML file using e4X. I can acquire information from the 'version' tag, but I cannot from any nested tags. Could someone please point out what I am doing wrong? ...
3
votes
3answers
3k views

Can E4X Get Attribute of a Parent Node Based on Attribute of a Child At Any Level?

I'm struggling with some E4X and hope you can help. Here's my XML structure: <xml> <node type="bar"> <subnode id="4"> <subnode id="5"/> ...
3
votes
5answers
2k views

Load xml file in flex before application start/intialises

I've got a configuration xml file that I need to parse for values before a flex application laods. I've created a static class that allows for the values in the xml config file to be retrieved. I'm ...
2
votes
1answer
135 views

object detection in flash using haar-like feature

In OpenCV, we can use a xml file to describe haar-like features of a specific object. I wanna use this idea to detect palm and fist, now I hava my own xml feature file, and it works well in C and ...
2
votes
3answers
207 views

as3 namespace - get an attribute with a minus sign in it [closed]

Possible Duplicate: e4x / as3: How to access a node with a dash in its name. I've set the namespace for my XML to use SMIL and I'm able to pull the src attribute of an element this way: ...
2
votes
1answer
79 views

SMIL file xml isn't e4x friendly?

I'm loading in a smil file (follows the xml format) and it won't let me select properties via name (eg. xml.body) instead I can only access the data by xml.child(0). I've tried xml.child('body'), ...
2
votes
2answers
161 views

Android, XML parsing similar to E4X?

I am working on a project in Android now that involves parsing XML from a local file. I have done XML work extensiely in flex and have become used to the power and flexibility of E4X and it's ...
2
votes
1answer
500 views

Can C# / Linq add an XAttribute to a XElement after the XElement.Remove() has been invoked?

I'm currently translating portions of the chem4word project from C# to AS3. In the below code the XElement DelegateElement calls its Remove() method. If mark == true then it passes that XElement to ...
2
votes
2answers
161 views

With E4X, can I turn off indentation?

If I've got something like: var x = <div><span>hello</span><span>world</span></div> and add it to some other expression, it gets rendered as: <div> ...
2
votes
1answer
236 views

e4x: simplest way to tell if an attribute exists

What's the simplest way to tell if an attribute exists? p = <abc name="foo" />; js>p.@name.length() 1 js>p.@zebra.length() 0 I can use @attr.length() but was wondering if there is an ...
2
votes
2answers
2k views

Programatically enable/disable menuBar buttons in Flex 4

I have the following XML in my Flex4 (AIR) project that defines the start of my menu interface: <mx:MenuBar x="0" y="0" width="100%" id="myMenuBar" labelField="@label" ...
2
votes
1answer
386 views

How do I add another sibling element in e4x?

If I want to create: <foo> <bar>example1</bar> <bar>example2</bar> </foo> using e4x, and I already have: foo.bar = <bar>example1</bar> How do ...
2
votes
1answer
446 views

Accessing E4X nodes having special characters in name without breaking binding chain in flex

I am using E4X to bind some values from xml in flex 3. There is a problem when xml tag's (or attribute's) name has special character in it: having xml content var xml:XML = <tag> ...
2
votes
3answers
2k views

What is the Flex/AS3/E4X equivalent of this xpath query?

Given this document: <doc> <element> <list> <key attr='val'/> </list> </element> <element> <list> ...
2
votes
2answers
864 views

Flex e4x - select by multiple attributes

<EFM> <projects> <project name="EFM Columbus Supply Chain Project"> <characteristics> <characteristic name="Types of Data"> ...
2
votes
1answer
2k views

Javascript E4X: Select a node based on an attribute value

Consider this scenario: Using Javascript/E4X, in a non-browser usage scenario (a Javascript HL7 integration engine), there is a variable holding an XML snippet that could have multiple repeating ...
2
votes
3answers
6k views

Count the number of nodes in an XML snippet using Javascript/E4X

Consider this problem: Using Javascript/E4X, in a non-browser usage scenario (a Javascript HL7 integration engine), there is a variable holding an XML snippet that could have multiple repeating ...
2
votes
1answer
169 views

Why is my Atom data binding not working?

I've got a Flex application with Advanced Data Grids binded with XML and Atom feeds. With my XML file, the application works very well: jiraList = new XMLList(event.result.channel.item); However, ...
2
votes
3answers
552 views

E4X: Use string as attribute name in expression?

I have a function that has this line: var returnString:String = items[0].@month; @month is an attibute on an XML node like so: <xmlnode month="JAN"/> OK but I need to abstract the ...
2
votes
3answers
2k views

How Can I get Remote Objects to return XML in E4X?

I'm writing a Flex application that makes full use of BlazeDS to a Java server. I use Remote Objects a lot, but I've come across an instance where receiving XML is cleaner and faster than returning ...
1
vote
1answer
57 views

Getting xml:id attribute using XML object

I'm processing XML using Rhino 1.7R3 and have trouble accessing xml:id attribute. var bond = new XML('<person xml:id="007" profession="agent">James Bond</person>'); print(bond); // "James ...
1
vote
2answers
53 views

XML, namespaces and E4X

Can someone explain me what exactly namespaces (xmlns="...") in XML are for and how they have to be used in navigating an XML using E4X (..preferrably in ActionScript 3)? I fail to fully understand ...
1
vote
1answer
75 views

Rhino E4X does not allow xml literal in {expression}

I am using rhino1_7R2. I have found that the following program causes syntax error(illegally formed XML syntax): function b(node) { return <span>{node}{node}</span>; } ...
1
vote
1answer
69 views

What browsers are currently supporting E4X(to give direct support for XML to JavaScript)

I heard E4X; a New extension to the javascript gives direct support for XML to JavaScript. Please tell me currently what browsers have support for this.
1
vote
2answers
119 views

Flex e4x filter out children

I'm trying to filter my xml so that the childnodes are not displayed. This xml will then be used as a dataprovider for my advanceddatagrid. Given this XML : <item text="folder1" ...
1
vote
1answer
85 views

How to Get 3 Nodes using AS3 and E4X?

I am writing a class in Main.as that makes a urlRequest and returns the result. There are 3 nodes I need, minTemp, maxTemp and Icon. I'm making the request for one city so there should be just one ...
1
vote
1answer
180 views

Reserved word in XML tag

<node>left</node> <class></class> <et>16,471</et> When I get tag class, I see error 1084, because class is reserved word vars["class1"] = result.item[0].class;
1
vote
2answers
188 views

Proper way to replace text in E4X element

I'm trying to remove double quotes from text nodes. The following code works: var cars = <cars> <buick> <color> "Blue" ...
1
vote
1answer
483 views

Flash AS3: Using “string” to pass in E4X XML querry

I want to be able to do something like var XMLquerry:String = "a1.a2.a3"; var parserVal:XML = parserMethod(XMLquerry); // or var parserVal:XMLList = parserMethod(XMLquerry);` and get an output ...
1
vote
1answer
679 views

Flex 4 E4X Filtering By Attributes Has Undefined Variable

I have some xml and I am trying to filter it using e4x. My e4x statement looks like this: model.config.source.fees..fee.(@min<amount).@amount My xml looks liks this: <flex> ...
1
vote
1answer
73 views

Rhino, e4x and generating URLs in XHTML

I'm using Rhino to generate XHTML but my urls are being encoded as in: -http://www.example.com/test.html?a=b&c=d becomes -http://www.example.com/test.html?a=b&amp;c=d Failing test case as ...
1
vote
1answer
94 views

getElementsByTagName in E4X

I'm searching a possibility to get an array of elements in E4X for an unknown tagname (like the DOMs getElementsByTagName) inside of a function. My first thought was something like: (function (doc, ...
1
vote
1answer
135 views

delete XML node, keep original

I need to delete some nodes from an XML variable and I want to keep the original intact. So I pass the XML to a new variable and delete the nodes from that one but the original changes with it. Is ...
1
vote
1answer
184 views

Filtering in E4X

This is just a simple question. I'm currently using Mozilla's Rhino to develop a little webapp. As one step, I need to get a webpage and filter all of it's nodes. For doing that, I use E4X. I thought ...
1
vote
2answers
165 views

e4x filter on more than one children?

My XML Looks like this: <?xml version="1.0" encoding="utf-8" ?> <projects> <project id="1" thumb="media/images/thumb.jpg" > <categories> ...
1
vote
1answer
493 views

How to query an XML File with E4X in AS3?

I need to archive a database-driven flash as3 website. I exported a table to xml so now i have something like this: <RECORDS> <RECORD> <id>home</id> ...
1
vote
3answers
582 views

Concat E4X expressions in ActionScript 3

Is there any way to concatenate E4X expressions? If I store "half" a path in a variable, can I concatenate the way I do with Strings?
1
vote
2answers
173 views

Converting xml attribute to array

In the following XML: <myxml> <photos> <photo url="1.jpg"/> <photo url="2.jpg"/> <photo url="3.jpg"/> <photo url="4.jpg"/> ...
1
vote
1answer
109 views

Filter 2 different nodes in E4X?

Can I filter 2 different node types in E4X same as attributes but then on node type? I cannot find this anywhere: Something like": $.book_xml.pages.page.(node == 'front' && node =='back'); ...
1
vote
1answer
470 views

Flex XML dynamic type

I have an application which receives dynamic XML data from a server. The structure of the XML is dynamic and the tags/attribute names cannot be predicted. NO row items can be hardcoded. The data is ...
1
vote
2answers
1k views

E4X get element's next sibling

I have a reference to a XML node which is part of a bigger XML tree. Is there a way to get that elements next/previous sibling without accessing the parent and looking for it? Something like DOM's ...
1
vote
3answers
150 views

How do I create variable paths using e4X?

I need to know how I can parse a variable path in Flex 3 & e4X. For example, I have two XML strings where the name of one element is the only difference. <NameOfRoot> ...

1 2 3 4