Hello everybody,I'm using this method to show attributes of the selected item on the map : protected function addAttribInspector():void { attrInsp = new AttributeInspector([mainMap.getLayer('fLayer') as FeatureLayer]); attrInsp.formItemsOrder = FormItemsOrder.NONE; attrInsp.percentWidth = 100; attrInsp.percentHeight = 100; infoBC.removeAllElements(); infoBC.addElement(attrInsp); } the feature layer is defined as follows : <esri:FeatureLayer id="fLayer" mode="selection" outFields="*" selectionComplete="myFeatureLayer_selectionCompleteHandler(event)" selectionColor="#FF0000" fault="fLayer_faultHandler(event)" graphicAdd="fLayer_graphicAddHandler(event)" />
I want that fields appear in the same order as defined in the server, but I get them ordered alphabetically. I tried all possible values of the attribute formItemsOrder but no effect !