Richard Haeser
Richard Haeser

Reputation: 45

Custom TCA validations in TYPO3

How do I create a custom validation for a TCA field? We want to check the input of a textfield with an AJAX-request. So it should be done with JS. If I check the FormEngineValidation.js it seems there is no option for using custom validators.

Is that right? Or did I miss something?

Version: TYPO3 CMS 7LTS

Upvotes: 2

Views: 668

Answers (1)

Christian Kuhn
Christian Kuhn

Reputation: 993

The 'eval' api of FormEngine is still rather ugly.

ext:styleguide brings an example for input_21 that adds some JS magic using returnFieldJS(), this may or may not be enough for your use case.

https://github.com/TYPO3/styleguide/blob/master/Classes/UserFunctions/FormEngine/TypeInput21Eval.php

Upvotes: 1

Related Questions