Hi!
Where are documented these News/Enhancements?
[new] case 122988: added global method converter plugin
[enh] new parameter for zoom level in controller.showPrintPreview(…)
[enh] case 39761: use field format to upper or lower case field values
And specifically I’m interested in the latter:
I need a way to format to uppercase the user input without the need to specify U for every chars in a lenghty field and must also permit the input of numbers NOT only letters.
Now if you put U in the format, in that position you can only put a letter, not a number or a simbol.
Of course, without using field = field.toUpperCase()
[/quote]
Gianni1962PiacenzaIT:
Where are documented these News/Enhancements?
[new] case 122988: added global method converter plugin
You specify two methods one for input and one for output. One takes the field value as an argument and converts it into some value to be stored in the database and returns that, the other takes the converted data as input and returns the original.
Gianni1962PiacenzaIT:
[enh] new parameter for zoom level in controller.showPrintPreview(…)
See the showPrintPreview sample code.
Gianni1962PiacenzaIT:
[enh] case 39761: use field format to upper or lower case field values
The format is ‘|U’ and ‘|L’, respectively.