I have a FeatureDataForm that has a date, text, and integer field for testing puposes...I want the FDF to close as soon as the user clicks APPLY assuming that the form passes validationIf I bypass closing the form on "EditEnded" and type a letter in the integer textbox I can see the red indicator telling me that I have a data input error...hovering over it I it tells me that it is requiring an integer.So I know its working fine....MY question is how can I test the validation,which will run when I hit the APPLY button, so I can close the FDF automatically when the Validation passes...I tried this but getting errors on the .ValidateItem not a member of ESRI.ArcGIS.Client.Toolkit.FeatureDataForm If FeatureDataForm.ValidateItem() Then
' can continue
Else
' cancel - not valid
End If
Thoughts?