Sorry not express myself right.
I'm trying to change the field of example, test_dependent_validation.php,
$form-> AddInput (array (
'TYPE' => 'text',
'Id' => 'dependent'
'NAME' => 'dependent'
'LABEL' => '<u> D </ u> ependent'
'ACCESSKEY' => 'D',
'ValidateAsNotEmpty' => 1,
'ValidationErrorMessage' => 'It was not entered a value in the field dependent.'
'DependentValidation' => 'condition'
));
for this:
$ form-> AddInput (array (
"TYPE" => "custom"
"Id" => "dependent"
'NAME' => 'dependent'
"LABEL" => "<u>D</u>ata"
"ACCESSKEY" => "D"
"CustomClass" => "form_date_class"
"Format" => "{day}/{month}/{year}"
'DependentValidation' => 'condition'
));
I'm not using anything different, just changed the text field for a custom field.
But he always makes the validating.
Is there anything more to do to a field CustomClass = 'form_date_class'?
Look here:
200.186.208.43:88/_phplib_/FormGene
...