How converting a field value to first letter uppercase?

goliath 24 May, 2013
Is there a possibility to convert a field value to first letter uppercase?
GreyHead 24 May, 2013
Hi geertmartens,

You can do it after the form is submitted with a Custom Code action. The code will be like this:
<?php
$form->data['input_name'] = ucfirst($form_data['input_name']);
?>

Bob
goliath 24 May, 2013
Hi Bob

Just changed the
$form_data
into
$form->data
and it works perfect!
Thanks!
GreyHead 24 May, 2013
Hi geertmartens,

Sorry about that :-(

I've fixed my earlier post.

Bob
This topic is locked and no more replies can be posted.