I have an XML file that contains one set of data and this has to be represented in one of the many dojo content panes of a HTML page. I’ve tried dojox.grid.DataGrid and it works; however since the data grid is used to generally represent tabular data, I don’t want to use data grid.
Is there any other way to represent this data in a simple format?
The XML file is something like this:
<Summary>
<neName>abc</neName>
<neType>pqr</neType>
<neRelease>2.0</neRelease>
<neAddress>10.10.82.105</neAddress>
<supervisionState>SUPERVISED</supervisionState>
<operationalState>ENABLED</operationalState>
<alignmentState>ALIGNED</alignmentState>
<criticalAlarms>0</criticalAlarms>
<majorAlarms>0</majorAlarms>
<minorAlarms>0</minorAlarms>
<noOfShelves>5</noOfShelves>
</Summary>
I want this data to be represented something like this:

If you’re feeling frisky, you can make a sort-of generic, XML data widget. Here’s an example I have from some time ago.
You can then use it something like this in your HTML (i.e. the widget doesn’t care how you display the data, it just uses the given tag names to lookup data in the XML from the server):
Here’s a modified jsfiddle you can try: http://fiddle.jshell.net/K4UnJ/3/
Not sure if this fits your task at all, but since I had very similar code lying around, I thought I’d share.