[SOLVED] Upper Case |
4/6/2010 4:40:43 PM |
PHPRunner General questions | |
R
rodny author
Hello, |
|
![]() |
vin7102 4/6/2010 |
Rodny, $value = strtoupper($value);
$values["FieldName"] = strtoupper($values["FieldName"]);
|
R
|
rodny author 4/6/2010 |
Rodny, There is really two ways to do this. If you just want to have a specific field appear in upper case in a list page or report page, this is the easiest method To make the characters all appear in upper case, go to the list page, or add page and double click on the field that you want to be upper case and select the "view as" tab. Select "custom" from the list on the left and enter this in the text field on the right: $value = strtoupper($value);
$values["FieldName"] = strtoupper($values["FieldName"]);
<input type="text" name="caps" size=40 value="" onChange="javascript:this.value=this.value.toUpperCase();">
|
![]() |
Admin 4/6/2010 |
Check Javascript API article in PHPRunner manual that explains how to add code to onchange function of any field on Add/Edit page. |
R
|
rodny author 4/6/2010 |
Check Javascript API article in PHPRunner manual that explains how to add code to onchange function of any field on Add/Edit page.
|
![]() |
Admin 4/7/2010 |
We cannot help you without seeing your code. What's your code? |
R
|
rodny author 4/7/2010 |
We cannot help you without seeing your code. What's your code?
|