Ext.data.Store, Javascript Arrays and Ext.grid.ColumnModel - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:20:09Z http://stackoverflow.com/feeds/question/709639 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/709639/ext-data-store-javascript-arrays-and-ext-grid-columnmodel 0 Ext.data.Store, Javascript Arrays and Ext.grid.ColumnModel Michael Wales 2009-04-02T13:10:39Z 2009-04-03T20:25:29Z <p>I am using Ext.data.Store to call a PHP script which returns a JSON response with some metadata about fields that will be used in a query (unique name, table, field, and user-friendly title). I then loop through each of the Ext.data.Record objects, placing the data I need into an array (<code>this_column</code>), push that array onto the end of another array (<code>columns</code>), and eventually pass this to an Ext.grid.ColumnModel object.</p> <p>The problem I am having is - no matter which query I am testing against (I have a number of them, varying in size and complexity), the columns array always works as expected up to <code>columns[15]</code>. At <code>columns[16]</code>, all indexes from that point and previous are filled with the value of <code>columns[15]</code>. This behavior continues until the loop reaches the end of the Ext.data.Store object, when the entire arrays consists of the same value.</p> <p>Here's some code:</p> <pre><code>columns = []; this_column = []; var MetaData = Ext.data.Record.create([ {name: 'id'}, {name: 'table'}, {name: 'field'}, {name: 'title'} ]); // Query the server for metadata for the query we're about to run metaDataStore = new Ext.data.Store({ autoLoad: true, reader: new Ext.data.JsonReader({ totalProperty: 'results', root: 'fields', id: 'id' }, MetaData), proxy: new Ext.data.HttpProxy({ url: 'index.php/' + type + '/' + slug }), listeners: { 'load': function () { metaDataStore.each(function(r) { this_column['id'] = r.data['id']; this_column['header'] = r.data['title']; this_column['sortable'] = true; this_column['dataIndex'] = r.data['table'] + '.' + r.data['field']; // This display valid information, through the entire process console.info(this_column['id'] + ' : ' + this_column['header'] + ' : ' + this_column['sortable'] + ' : ' + this_column['dataIndex']); columns.push(this_column); }); // This goes nuts at columns[15] console.info(columns); gridColModel = new Ext.grid.ColumnModel({ columns: columns }); </code></pre> http://stackoverflow.com/questions/709639/ext-data-store-javascript-arrays-and-ext-grid-columnmodel/709673#709673 0 Answer by Michael Wales for Ext.data.Store, Javascript Arrays and Ext.grid.ColumnModel Michael Wales 2009-04-02T13:20:14Z 2009-04-02T13:20:14Z <p>Okay, since the this_column array was responding correctly on each run, but the columns array was not, I figure it must be an issue with the push().</p> <p>After a bit more toying with it, I moved altered the code to reset the this_column array on each iteration of the loop - seems to have fixed the issue...</p> <pre><code>metaDataStore.each(function(r) { this_column = []; this_column['id'] = r.data['id']; this_column['header'] = r.data['title']; this_column['sortable'] = true; this_column['dataIndex'] = r.data['table'] + '.' + r.data['field']; columns.push(this_column); }); </code></pre> http://stackoverflow.com/questions/709639/ext-data-store-javascript-arrays-and-ext-grid-columnmodel/715599#715599 0 Answer by dmd for Ext.data.Store, Javascript Arrays and Ext.grid.ColumnModel dmd 2009-04-03T20:25:29Z 2009-04-03T20:25:29Z <p>I see you've already found something that works, but just to offer some advice for the future: this is much easier if you use a json store and column model directly instead of performing intermediate steps by hand.</p> <p>I'm not sure if you're using a grid or dataview, but the concept is pretty much the same for both of them. If you have to do a bit of data customization, but instead of doing it by hand here you can actually just do it in a prepareData callback function.</p>