Hello,I have a couple of map applications. The user can make a request, say for a particular attribute of a polygon dataset. The application finds the record of choice then zooms to that polygon - or so it should.I find that sometimes it works the first time; sometimes it does a little jumping around but doesn't zoom - but if you click the search button again (same request) then it will zoom.I went several months without this problem, but it seems to be getting worse.I have a hunch it has something to do with the ContrainExtentBehavior and the size/shape of the browser window, but I'm not sure.Following is the xaml for the map:<esri:Map x:Name="Map" Background="White"
Extent="{StaticResource StartExtent}"
IsLogoVisible="False"
>
<i:Interaction.Behaviors>
<esri:ConstrainExtentBehavior ConstrainedExtent="-14055335, 5124845, -12536844, 5853025" />
</i:Interaction.Behaviors>
<!-- MAP LAYERS -->
<esri:Map.Layers>
<esri:ArcGISTiledMapServiceLayer ID="Base Layer"
Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" Opacity="1.0" Visible="True" MinimumResolution="2" />
...
Any ideas on how to prevent this jumping-but-no-zooming behavior?Dorothy