I am trying to edit a feature in Silverlight VB..I am usign teh ESRI examples from:http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitFeatureDataFormI can get the Dataform to popup and display data when selected in the map but the textboxes are grayed out and non editable....any thoughts? Permissions back to Map Service? missing code to define teh editable feature?I can edit the same points with the out of box aspx examples...but not from the example aboveThoughts?This is what I got taking from the example:XAML:<!-- Point example for editing -->
<esri:FeatureLayer ID="MG_Point" Visible="True"
Url="http://gis.org/arcgis/rest/services/MG_Test/MapServer/22"
MouseLeftButtonUp="Points_MouseLeftButtonUp" DisableClientCaching="True" Mode="OnDemand"
SelectionColor="#FFFFFF00" OutFields="*" />
<!-- Points DataFrom Border Editor-->
<Border x:Name="PointDataFormBorder" Visibility="Collapsed"
HorizontalAlignment="Right" VerticalAlignment="Top" Margin="10,10,10,0" Width="300" Height="300" >
<Border.Effect>
<DropShadowEffect Color="Black" Direction="-45" BlurRadius="20" Opacity=".75" />
</Border.Effect>
<esri:FeatureDataForm x:Name="MyPointFeatureDataForm"
FeatureLayer="{Binding Path=Layers[MG_Point], ElementName=MyMap}"
IsReadOnly="False" LabelPosition="Left" />
</Border>
VB:
Private Sub Points_MouseLeftButtonUp(ByVal sender As Object, ByVal args As GraphicMouseButtonEventArgs)
Dim featureLayer As FeatureLayer = TryCast(sender, FeatureLayer)
For Each g As Graphic In featureLayer.Graphics
If (g.Selected) Then
g.UnSelect()
End If
Next
args.Graphic.Select()
MyPointFeatureDataForm.GraphicSource = args.Graphic
PointDataFormBorder.Visibility = Visibility.Visible
End Sub