I want to show in my editorgridpanel only the last row (added row), not all records from store. Im working with OpenLayers, Geoext libraries. Store is defined with Geoext.data.FeatureStore.
var store_point = new GeoExt.data.FeatureStore(
{
layer:point,
fields:[
{name: "TXT", type:"string"}
]
});
After feature is added the event is triggered to fill attribute values for feature. The problem is, that i see all records from store. I want to see only the added. Any help?