Anyone - have any suggestions or workarounds (besides not using feature layer).
featureLayer = new esri.layers.FeatureLayer(url, { mode: esri.layers.FeatureLayer.MODE_SNAPSHOT, maxAllowableOffset: calcMaxOffset(), outFields: ["'*"], visible: false, displayOnPan: (!dojo.isIE) });
Yeah - don't use IE.
Just kidding - I've seen this before, too. I'm not an expert on this, but I think it's due to the way that IE renders features (it uses VML since SVG is not supported).
Ensure that you're serving the smallest possible features by using the maxAllowableOffset parameter - see the excellent blog post here regarding this.
Good luck,
Steve
Hey Vijay,
Just sent you an email on this but I think the solution to the particular problem you're having is to set displayOnPan to false for feature layer. To target only IE, something like this does the trick:
featureLayer = new esri.layers.FeatureLayer(url, { mode: esri.layers.FeatureLayer.MODE_SNAPSHOT, maxAllowableOffset: calcMaxOffset(), outFields: ["'*"], visible: false, displayOnPan: (!dojo.isIE) });
If it were up to me, I would prefer Steve's solution of not using IE ;).