![]() |
Sergey Kornilov admin 5/7/2007 |
Use BeforeAdd/BeforeEdit events for this purpose. $values["FieldName"] = strtoupper($values["FieldName"]); |
F
|
funkfish author 5/9/2007 |
Use BeforeAdd/BeforeEdit events for this purpose. See sample action "Check if record exists". To convert data to upper case use strtoupper() function: $values["FieldName"] = strtoupper($values["FieldName"]);
|
![]() |
Sergey Kornilov admin 5/9/2007 |
I'm talking about BeforeAdd/BeforeEdit events while you trying to use it in BeforeRegister event. |
F
|
funkfish author 5/9/2007 |
I'm talking about BeforeAdd/BeforeEdit events while you trying to use it in BeforeRegister event.
|
![]() |
Sergey Kornilov admin 5/9/2007 |
This code looks correct and you don't need to add all fields if you only search for duplicates in UPC field. |
F
|
funkfish author 5/10/2007 |
This code looks correct and you don't need to add all fields if you only search for duplicates in UPC field.
|