# Formatage des champs de saisie (Formatting of input fields)

**URL:** https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285
**Category:** Ask for Help
**Tags:** custom-css, custom-code, actions
**Created:** [December 2, 2024, 7:11am UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285 "2024-12-02T07:11:23Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![MANUEL\_11\_SOLYLO](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/manuel_11_solylo/32/72067_2.png) [@MANUEL\_11\_SOLYLO](https://community.glideapps.com/u/MANUEL_11_SOLYLO)
#### Post date: [December 2, 2024, 7:11am UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285/1 "2024-12-02T07:11:23Z")

</div>

Bonjour

Je cherche le moyen de formater des champs de saisi dans les applications Glideapps.

Exemple : Je voudrais que les données soient enregistrées en forçant l’utilisateur à inscrire que des majuscules.

Ou bien utiliser un système d’ “expression régulière” pour la saisi des champs.

Si vous avez des informations je suis preneurs !

Bonne journée !

Hello

I’m looking for ways to format input fields in Glideapps applications.

Example: I would like the data to be recorded by forcing the user to register only capital letters.

Or use a “regular expression” system to enter fields.

If you have any information I’m taking!

Have a nice day!

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [December 2, 2024, 11:50am UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285/2 "2024-12-02T11:50:05Z")

</div>

You can use the upper case column if you want to get the user input in uppercase.

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [December 2, 2024, 3:39pm UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285/3 "2024-12-02T15:39:33Z")

</div>

Direct regex isn’t supported, but maybe you can use a custom form and JavaScript in tandem to check if the input is correct or not.

If not, you don’t allow the user to submit/continue with their flow.

---

<div class="post-metadata">

### Author: ![MANUEL\_11\_SOLYLO](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/manuel_11_solylo/32/72067_2.png) [@MANUEL\_11\_SOLYLO](https://community.glideapps.com/u/MANUEL_11_SOLYLO)
#### Post date: [December 3, 2024, 10:21am UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285/4 "2024-12-03T10:21:39Z")

</div>

Et en ce qui concerne la collecte des fichiers “File picker”, peut on faire en sorte qu’il n’autorise que les fichiers PDF ?

And when it comes to collecting “File Picker” files, can we make sure that it only allows PDF files?

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [December 3, 2024, 11:46am UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285/5 "2024-12-03T11:46:33Z")

</div>

Je crois que cela n’est malheureusement pas possible… Mais peut-être que quelqu’un me corrigera.

- 

Unfortunately, I don’t think that it is possible. But maybe someone can correct me.

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [December 3, 2024, 1:17pm UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285/6 "2024-12-03T13:17:44Z")

</div>

Also using custom form, you can check the extension of the URL and see if it’s PDF.

If it’s not, display an error message on the screen and don’t allow users to move forward.

It’s also possible to do it with a native form, using CSS.

> [@Exploring the Enhanced Capabilities of Glide's Native Form](https://community.glideapps.com/t/exploring-the-enhanced-capabilities-of-glides-native-form/69876/):
>
> I want to share about the additional capabilities that we can achieve with Glide’s native form. What I have tested with the help of CSS is that native forms can also be applied for validation. Create your validation in the table columns and present it through messages via the “hint” component. Add the visibility conditional and the class “prevent-submit” to these hint components. Add the following CSS code: /\*Container Form\*/ #page-root:has(.prevent-submi…

---

<div class="post-metadata">

### Author: ![MANUEL\_11\_SOLYLO](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/manuel_11_solylo/32/72067_2.png) [@MANUEL\_11\_SOLYLO](https://community.glideapps.com/u/MANUEL_11_SOLYLO)
#### Post date: [December 3, 2024, 4:22pm UTC](https://community.glideapps.com/t/formatage-des-champs-de-saisie-formatting-of-input-fields/78285/7 "2024-12-03T16:22:55Z")

</div>

Merci de vos retour je vais me pencher sur la question !

Bonne semaine !
