I have an app that is deployed and running. User wanted me to change a field in the map tip. I added a new field to the dataset and added the field name to the OutFields in my XML and changed the field name in the binding for the map tip. However the map tip doesn't display any data! If I do an identify, the new field shows up in the data grid and all is well. Except the map tips. Oddly enough if I check in REST it doesn't show that the new field is added.What is up!
<esri:FeatureLayer ID="Future Landuse" Url="http://myserver.com/ArcGIS/rest/services/Zoning/MapServer/1" Opacity="0.50" Visible="False" OutFields="LULEGEND,LUVALUE">
<esri:FeatureLayer.MapTip>
<Border CornerRadius="10" BorderBrush="#FF222957" BorderThickness="3" Margin="0,0,15,15">
<Border.Background>
<LinearGradientBrush EndPoint="1.038,1.136" StartPoint="0.015,0.188">
<GradientStop Color="#FFD1DFF2"/>
<GradientStop Color=" #FF0088FF" Offset="0.946"/>
</LinearGradientBrush>
</Border.Background>
<Border.Effect>
<DropShadowEffect ShadowDepth="10" BlurRadius="14" Direction="300"/>
</Border.Effect>
<StackPanel Orientation="Vertical" Margin="7">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Future Landuse: " Foreground="Black"/>
<TextBlock Text="{Binding [LUVALUE]}" FontWeight="Bold" Foreground="Black"/>
</StackPanel>
</StackPanel>
</Border>
</esri:FeatureLayer.MapTip>
</esri:FeatureLayer>