Viewing 9 replies - 1 through 9 (of 9 total)
  • 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.

    Thread Starter sparcsun

    (@sparcsun)

    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?

    Thread Starter sparcsun

    (@sparcsun)

    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?

    Thread Starter sparcsun

    (@sparcsun)

    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

    Thread Starter sparcsun

    (@sparcsun)

    Resolved.
    with javascript It was enough to force the “attributes” (into detail field) with this:
    onBlur=”this.value=this.value.toUpperCase()”

    Thread Starter sparcsun

    (@sparcsun)

    Resolved.
    with javascript It was enough to force the “attributes” (into detail field) with this:
    onBlur=”this.value=this.value.toUpperCase()”

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Fields in UPPER CASE’ is closed to new replies.