Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
Re: Force upper case in input text field 19.11.2013 19:55
Hi,
using css you can't force user input to use uppercase, you can add a class to your css and assign it to your inputs class:
.uppercase
{
text-transform: uppercase;
}
but this changes only the view, the value of the field remains as typed, so it will be stored that way.
Regards
Moonsoft Team
www.moonsoft.es
using css you can't force user input to use uppercase, you can add a class to your css and assign it to your inputs class:
.uppercase
{
text-transform: uppercase;
}
but this changes only the view, the value of the field remains as typed, so it will be stored that way.
Regards
Moonsoft Team
www.moonsoft.es
Re: Force upper case in input text field 01.12.2013 12:02
Hi,
not using css classes or default validators, that kind of validation can only be added using custom javascript that would be specific for your form. We could build such custom code to add to the front-end view, if you are interested in getting a quote please place a ticket at the helpdesk regarding this requirement.
Thanks, regards
Moonsoft Team
www.moonsoft.es
not using css classes or default validators, that kind of validation can only be added using custom javascript that would be specific for your form. We could build such custom code to add to the front-end view, if you are interested in getting a quote please place a ticket at the helpdesk regarding this requirement.
Thanks, regards
Moonsoft Team
www.moonsoft.es
Re: Force upper case in input text field 04.12.2013 17:32
Hi,
the fields are created dynamically as they are placed according to the custom html layout, so its not a simple code, but in case you want to give it a try, they are generated here:
joomla\modules\mod_listmanager\tmpl\content.php
line 958 to 973.
Hope this helps, regards
Moonsoft Team
www.moonsoft.es
the fields are created dynamically as they are placed according to the custom html layout, so its not a simple code, but in case you want to give it a try, they are generated here:
joomla\modules\mod_listmanager\tmpl\content.php
line 958 to 973.
Hope this helps, regards
Moonsoft Team
www.moonsoft.es