The Community forums are being phased out in favor of a new Slack group.
Add your email address below to get an invitation to join the community slack group

Slack Signup
Newsletter Optin
Help Desk

Format settings use uppercase letters

Labels

This Discussion is public

Notifications

Is it possible to set the format settings for an input field only to accept uppercase letters? Can only se lowercase letters under accepted characters here: https://formidableforms.com/knowledgebase/format/

 

Found this little script to do the trick:

<script language="javascript" type="text/javascript">

function pulsar(obj) {

obj.value=obj.value.toUpperCase();

}

</script>

 

<input type="text" onkeyup="pulsar(this)" />

Discussion closed.