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
Format settings use uppercase letters
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/
July 12, 2017 at 6:50 am
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.