Hi,I would like to use the attributeInspector to create a new entity in a layer/table.This attributeInspector would be placed in a pop-up or outside the map.So far I was thinking to do something like this:var attrInspector:AttributeInspector = new AttributeInspector(); ... attrInspector.featureLayers = [featLayer]; var g:Graphic = new Graphic(); attrInspector.showFeature(g, featLayer);
Is it a good approach ?Thanks.