Hello,
I have a field called Latijnse_Naam and i want only the first character from each word in the string and put this outcome in a other field “trefnaam” after a ajax event . I made a javascript method: with a parameter field (latijn).
The Javascript method:
let shortname=latijn;
shortname=shortname.split(’ ‘).map(word=>word[0]).join(’’);
how can i set the field trefnaam with the value (shortname) form the Javascript method?
thanks