How do I use a customValidator With RadGrdi to validate ALL of the editable fields in a grid when in-line editing is used. In such a case, I don't set ControlToValidate in the CustomValidator, so in my ServerValidate Event, I don't know how to obtain the values being updated. The example shown in
http://www.telerik.com/help/aspnet-ajax/grid-validation.html
only pertains to validating a single field.
http://www.telerik.com/help/aspnet-ajax/grid-validation.html
only pertains to validating a single field.
Private
Sub
custVal_ServerValidate(
ByVal
source
As
Object
,
ByVal
args
As
System.Web.UI.WebControls.ServerValidateEventArgs)
Handles
custVal.ServerValidate
args.IsValid = ValidatedConfiguration()
End
Sub
Private
Sub
ValidatedConfiguration()
' How do I access the updated values here?
End
Function