Hi sparcsun, you could try to add some css rule for the fields the output the date in upper case. For example something like this..
div
{
text-transform:uppercase;
}
Let me know if that helps you.
I have already tried to use the “text-transform: uppercase” but it does not work.
In fact, if during the compilation of form, the field is automatically converted to appear in UPPER CASE, the received mail containing the text to lower case!
Hi where did you add the code? How did you add the code?
Hi,
Details Field–>
Input CSS:
style=”text-transform:uppercase;”.
In this way, when the text is entered, it is automatically made in UPPER but the email is received in LOWER CASE (if the caps lock was not active).
Thanks
Hi did the above code help you with your question?
Hi, this:
div
{
text-transform:uppercase;
}
I tried to specify your code into the CSS INPUT (details field) but does not work. I don’t know if it should be added somewhere else.
Thanks
Hi here is a page that you might like to check.
If this does not work, I think you will have to send a request e-mail to @mike Challis the developer.
Kind regards
Resolved.
with javascript It was enough to force the “attributes” (into detail field) with this:
onBlur=”this.value=this.value.toUpperCase()”
Resolved.
with javascript It was enough to force the “attributes” (into detail field) with this:
onBlur=”this.value=this.value.toUpperCase()”