Force lowercase letters in spreadsheet to form widget

  • LagarderePLUS
    Asked on March 13, 2019 at 4:45 PM

    Hi, 


    I have a rather complicated question. I am using a spreadsheet to form widget to prepolutate data. Unfortunately when using a smartphone (iOS) for example, the first letter is always in uppercase. Due to this the code will not load and the UX is not optimal Two questions in this regard:


    1) is it possible to use something like this to prevent the error when using a capital leter p.lowercase  (text-transform: lowercase;)

    OR

    2) is it possible to not differentiate between upper and lowercase letters?


    Thank you

  • Alan_D
    Replied on March 13, 2019 at 6:23 PM

    You can force the input field to lowercase letters. 
    Please inject the following code in the widget custom CSS.
    #access-code {
      text-transform: lowercase; !important;
    }
    Force lowercase letters in spreadsheet to form widget Image 10Please look at this.
    1552515950bandicam20190314012437715 Screenshot 21

  • LagarderePLUS
    Replied on March 14, 2019 at 5:55 AM

    THIS IS AMAZING! Thank you!