Hi - I would like to modify a record in a store, I created using GeoExt.data.FeatureStore. The actual store looks like:<br><br>        var store = new GeoExt.data.FeatureStore({<br>          fields: [<br>             {id: new Date().getTime(), name: &#39;stfid&#39;, type: &#39;string&#39;},<br>
             {id: new Date().getTime(), name: &#39;ch_0209_r_tax_val&#39;, type: &#39;float&#39;}<br>          ]<br>        });<br><br>I thought I could modify it by doing the following:<br><br>var record = store.getAt(0);<br>
record.set(&quot;name&quot;, &quot;id&quot;);<br><br>which would change stfid to id. But that did not work. I think it is because I&#39;m not dealing with the presents of &quot;fields&quot;.  I&#39;ve tried a variety of things without success.  Is there a simple way of doing this?<br>
<br>Thanks<br>Jim<br><br>