I am adding a Feature Grid in the Map page using this tutorial and I am not sure where exactly I have to add,
autoLoadFeatures: true
The tutorial says that I need to edit the feature manager section of the app.js but despite making the changes, I am still getting an empty feature grid.
Here is my code of the app.js that I modified,
{
ptype: "gxp_featuremanager",
id: "states_manager",
paging: false,
/*layer: {
source: "local",
name: "usa:states"
}*/
autoSetLayer: true,
autoLoadFeature: true
}, {
ptype: "gxp_featuregrid",
featureManager: "states_manager",
outputConfig: {
loadMask: true
},
outputTarget: "south"
}
