Click or drag to resize
EditorValidate Method
Perform validation on a data set. Note that validation is performed on data only when the action is 'create' or 'edit'. Additionally, validation is performed on the _wire data_ - i.e. that which is submitted from the client, without formatting. Any formatting required by
setFormatter
is performed after the data from the client has been validated.

Namespace:  DataTables
Assembly:  DataTables (in DataTables.dll) Version: 1.6.5.0 (1.6.5.0)
Syntax
C#
public bool Validate(
	DtResponse response,
	DtRequest request
)

Parameters

response
Type: DataTablesDtResponse
DataTables response object
request
Type: DataTablesDtRequest
DataTables request object

Return Value

Type: Boolean
`true` if the data is valid, `false` if not.
See Also