Hi,
I have a layers collection of type FeatureLayer and DynamicMapServiceLayers to show in a map from a Silverlight app. To be able to achieve the popup behavior in the current map, for the layers of FeatureLayer types I run the command (the code is in C#): ESRI.ArcGIS.Client.Extensibility.LayerProperties.SetIsPopupEnabled(mLayer, true); This is working and I have the popup shown once I clicked an element from this layer in the map.
The layer of type DynamicMapServiceLayers contains 2 sublayers. Executing the previous command for this layer is not enough. I presume that I have to enable the same behavior for these 2 sublayers, but I don't know how.
Can you please help? Thank you.