Majuscule et minnuscule

  • MartinJeanJacques
    Demandé le 30 août 2014 à 09:19

    Bonjour,

     

    J'aimerais savoir s'il est possible dans un champ Nom  , Prénom d'un formulaire  de pouvoir Imposer des majuscules dans le Nom et minuscules dans le Prénom ?

     

    Merci

     

    Cordialement

     

    J.J Martin

  • Welvin Support Team Lead
    Répondu le 30 août 2014 à 12:28

    Hi,

    Google Translate result is bad, I need to clarify whether you are trying to force Last Name in UPPERCASE and First Name in LOWERCASE?

    For Example: 

    Majuscule et minnuscule Image 1 Screenshot 30

    We can use CSS to transform text into this format in the live form view. However, the result is still the same based on the keyboard of the submitter - if Caps Lock key is not active, the text still comes are lowercase or capitalize. For example:

    Majuscule et minnuscule Image 2 Screenshot 41

    Thank you!

  • MartinJeanJacques
    Répondu le 30 août 2014 à 12:50

    Est ce que la modification du CSS interviendra dans le fichier excel des submissions. Dans ce fichier est ce que j'aurais le Nom en majuscule et le prénom en minuscule ?.

    Si votre réponse est positive, comment faire pour modifier le CSS ?

     

    Merci

     

    J.J Martin

  • Elton Support Team Lead
    Répondu le 30 août 2014 à 21:37

    Hi Martin,

    No, the CSS inject is only for the form level. Submissions data remains unaffected. Whatever entered on the field, it will remain as it is when it lands to your form's submissions page.

    However, if you're going to download your form submissions and open it to MS Excel, you can use the following formula if you want to capitalize the first letter of the cell value.

    =PROPER(A1)

    Majuscule et minnuscule Image 1 Screenshot 20

    ---

    By the way, if you still want to use the CSS workaround, inject the following to your form.

    #input_1{

    text-transform:capitalize;

    }

    Replace #input_1 with the field ID you want to capitalize its first letter. Guide: How-to-find-Field-IDs-Names

    If you need further assistance, do let us know. Thanks!