Why does dojo grid need a name column in the json data source - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T01:19:52Z http://stackoverflow.com/feeds/question/811596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/811596/why-does-dojo-grid-need-a-name-column-in-the-json-data-source 0 Why does dojo grid need a name column in the json data source simon 2009-05-01T14:29:45Z 2009-08-25T08:13:58Z <p>In the following sample data is only shown in the grid if the json data contains a name column -> the first grid shows data, the second not.</p> <p>Why is this the case?</p> <p><strong>index.html:</strong> dojo grid</p> <pre><code> &lt;link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dijit/themes/tundra/tundra.css" /&gt; &lt;link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/resources/dojo.css" /&gt; &lt;link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojox/grid/_grid/tundraGrid.css"&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/dojo.xd.js" djConfig="parseOnLoad: true, isDebug: true"&gt; &lt;/script&gt; &lt;script type="text/javascript"&gt; dojo.require("dojo.parser"); dojo.require("dojox.grid.Grid"); dojo.require("dojo.data.ItemFileReadStore"); &lt;/script&gt; &lt;/head&gt; &lt;body class="tundra"&gt; &lt;span dojoType="dojo.data.ItemFileReadStore" jsId="withNameStore" url="WithNameColumn.json" clearOnClose="true"&gt; &lt;/span&gt; &lt;table id="withNameGrid" dojoType="dojox.grid.Grid" store="withNameStore" clientSort="true" style="width: 20em; height: 20em;"&gt; &lt;thead&gt; &lt;tr&gt; &lt;th field="ID" &gt;ID&lt;/th&gt; &lt;th field="test"&gt;Test&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;/table&gt; &lt;span dojoType="dojo.data.ItemFileReadStore" jsId="withoutNameStore" url="WithoutNameColumn.json" clearOnClose="true"&gt; &lt;/span&gt; &lt;table id="withoutNameGrid" dojoType="dojox.grid.Grid" store="withoutNameStore" clientSort="true" style="width: 20em; height: 20em;"&gt; &lt;thead&gt; &lt;tr&gt; &lt;th field="ID" &gt;ID&lt;/th&gt; &lt;th field="test"&gt;Test&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><strong>WithNameColumn.json:</strong></p> <pre><code>{ "identifier":"ID", "label":"test", "items": [{"ID":2,"name":"name1","test":"dog"}, {"ID":3,"name":"name2","test":"cat"}, {"ID":4,"name":"name3","test":"mouse"}] } </code></pre> <p><strong>WithoutNameColumn.json:</strong></p> <pre><code>{ "identifier":"ID", "label":"test", "items": [{"ID":2,"test":"dog"}, {"ID":3,"test":"cat"}, {"ID":4,"test":"mouse"}] } </code></pre> http://stackoverflow.com/questions/811596/why-does-dojo-grid-need-a-name-column-in-the-json-data-source/818893#818893 0 Answer by VSP for Why does dojo grid need a name column in the json data source VSP 2009-05-04T05:41:10Z 2009-05-04T05:41:10Z <p>Name column is not needed you do need however a map between property in the Data store and column name in the grid. This is done when defining the grid 'Layout' the 'field' property in the 'Layout' is the name of the column in the Data store (the name of the property to be exact) and the 'name' property in the 'Layout' is the column name in the grid.</p> <pre><code> gridLayout = [{ defaultCell: { width: 8, editable: true, type: dojox.grid.cells._Widget, styles: 'text-align: right;' }, rows: [ { name: 'Id', field: 'id', editable: false /* Can't edit ID's of dojo.data items */ }, { name: 'Date', field: 'col8', width: 10, type: dojox.grid.cells.DateTextBox, formatter: formatDate, constraint: {formatLength: 'long', selector: "date"}}, { name: 'Priority', styles: 'text-align: center;', field: 'col1', type: dojox.grid.cells.ComboBox, options: ["normal", "note", "important"], width: 10}, { name: 'Mark', field: 'col2', width: 3, styles: 'text-align: center;', type: dojox.grid.cells.CheckBox}, statusCell, { name: 'Message', field: 'col4', styles: '', width: 10, type: dojox.grid.cells.Editor, editorToolbar: true }, { name: 'Amount', field: 'col5', formatter: formatCurrency, constraint: {currency: 'EUR'}, widgetClass: dijit.form.CurrencyTextBox }, { name: 'Amount', field: 'col5', formatter: formatCurrency, constraint: {currency: 'EUR'}, widgetClass: dijit.form.HorizontalSlider, width: 10} ] }]; </code></pre> http://stackoverflow.com/questions/811596/why-does-dojo-grid-need-a-name-column-in-the-json-data-source/1326757#1326757 1 Answer by liujinmarshall for Why does dojo grid need a name column in the json data source liujinmarshall 2009-08-25T08:13:58Z 2009-08-25T08:13:58Z <p>Just add a query attribute to your element. Like this:</p> <p>&lt;table query="{ID:'*'}" ...&gt;</p> <p>This is because that will perform a query when requesting data from data store</p>