Upper case in Textbox ? February 14, 2021, 12:46:05 PM I cannot find any property that can convert typing to uppercase.. in adding or editing pageHow to do this ??thanks in advance Quote Selected
Re: Upper case in Textbox ? Reply #1 – February 14, 2021, 02:44:05 PM You will need to use page events before add or before update, to add your php code to convert it to upper before it is inserted or you could use client event in the add or edit page field properties to add you jquery code to convert the input content to upper case. Because you don't get that in add or edit page field properties. Quote Selected
Re: Upper case in Textbox ? Reply #2 – June 14, 2021, 01:56:48 PM hello i would like to concat name and firstname with uppercase lowercase i used this code after update $params = array($rec_id);$bool = $db->rawQuery("UPDATE candidat SET nom_prenom = concat(UPPER(nom), ' ',concat(UPPER(SUBSTRING(prenom,1,1)),LOWER(SUBSTRING(prenom,2)))) WHERE id = ?", $params);it works very well in phpmyadmin but in phprad it shows name uppercase but first name '0'CAn you help me ? Quote Selected
Re: Upper case in Textbox ? Reply #3 – June 14, 2021, 02:01:27 PM my fault sorry i forgot one space Quote Selected