I have a map service that joins a feature class of points to a table that contains the detailed information about each point. When I join the two tables in ArcMap and pulish it as a REST service I can query the data and put the points on a MapServiceLayer using the feature layer coded below. The problem is when I click on the point I don't get any data in the popup window. I get a blank popup window. I also don't get any difference in color coding for the points. THey all show up as black triangles. I think I am missing something in how I need to qualify the names for the feilds but I don't know what. ANy suggestions?<esri:FeatureLayer id="flayer" load="{doSearch()}" loadError="flayer_loadErrorHandler(event)" updateEnd="flayer_updateEndHandler(event)" updateStart="flayer_updateStartHandler(event)" mode="onDemand" outFields="" url="http://localhost:6080/arcgis/rest/services/Tickets/MapServer/0"> <esri:infoWindowRenderer> <fx:Component> <esri:LabelDataRenderer label="{data.TktNo}"> <s:BorderContainer backgroundColor="white" borderColor="black" cornerRadius="5" minHeight="0" minWidth="0"> <s:layout> <s:VerticalLayout paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5"/> </s:layout> <s:Label text="Issued Date/Time: {data.IssuedTMS.toString()}"/> </s:BorderContainer> </esri:LabelDataRenderer> </fx:Component> </esri:infoWindowRenderer> <esri:renderer> <esri:UniqueValueRenderer field="I2000_53_GIS.sde.vw_ticket_gis.ViolCd"> <esri:UniqueValueInfo value="69"> <esri:CompositeSymbol> <esri:SimpleMarkerSymbol color="#FF0000" size="20" style="triangle"/> </esri:CompositeSymbol> </esri:UniqueValueInfo> <esri:UniqueValueInfo value="74"> <esri:CompositeSymbol> <esri:SimpleMarkerSymbol color="#00FF00" size="20" style="triangle"/> </esri:CompositeSymbol> </esri:UniqueValueInfo> <esri:defaultSymbol> <esri:CompositeSymbol> <esri:SimpleMarkerSymbol color="#000000" size="20" style="triangle"/> </esri:CompositeSymbol> </esri:defaultSymbol> </esri:UniqueValueRenderer> </esri:renderer> </esri:FeatureLayer>