![]() |
lefty 3/31/2017 |
Hi, I'm using PHP Runner 9.7 Build 28347 and I am wondering if it is possible to autofill a text field, based on two other text fields. For example, I have field1, field2, and field3. field1 = "A" field2="B", I would like field3 to automatically be "AB" Is this possible? Thanks
|
![]() |
romaldus 3/31/2017 |
Hi, I'm using PHP Runner 9.7 Build 28347 and I am wondering if it is possible to autofill a text field, based on two other text fields. For example, I have field1, field2, and field3. field1 = "A" field2="B", I would like field3 to automatically be "AB" Is this possible? Thanks
$values["field3"]=$values["field1"].$values["field2"]; |
![]() |
lefty 3/31/2017 |
You can do it in before record added event $values["field3"]=$values["field1"].$values["field2"];
|
K
|
kernal author 3/31/2017 |
Thanks you... been struggling with that one for a while... was trying to use + instead of . and kept getting an answer of 0. :-) |
![]() |
romaldus 3/31/2017 |
If you want to autofill field3 on the fly, use javascript onload instead
|
H
|
Hertz2P 4/1/2017 |
Thanks you... been struggling with that one for a while... was trying to use + instead of . and kept getting an answer of 0. :-)
|