fixed jQuery dprecations

This commit is contained in:
Micha
2025-03-03 12:53:00 +01:00
parent 30f1b9a6a9
commit af31afd34b
20 changed files with 63 additions and 63 deletions

View File

@@ -517,7 +517,7 @@ Editableform is linked with one of input types, e.g. 'text', 'select' etc.
@default null
@example
validate: function(value) {
if($.trim(value) == '') {
if(value.trim() == '') {
return 'This field is required';
}
}