Powering along with some NT development lately...You can tell by the number of questions I am suddenly posting!
Ok, a frustrating problem at the moment:
I have a file with two fields, FIL:Field1 and FIL:Field2.
I also have a WebForm with a couple of local variables LOC:MyVar1 and LOC:MyVar2
In the form, I have a drop down which pulls the value of FIL:Field1 and populates LOC:MyVar1 with it - works a treat.
Now, I whenever the user changes the drop down, I also want it to pull down the value of FIL:Field2 and populate LOC:MyVar2 with it. Cannot make it work.
I have gone to the ValidateValue::LOC:MyVar1 and entered the following code:
LOC:MyVar2 = p_web.GSV('FIL:Field2')
p_web.SSV('LOC:MyVar2') = p_web.GSV('FIL:Field2')
I have tried setting FIL:Field2 as a Hot Field, removed it. Tried p_web.GV() and SV() instead of GSV() and SSV() and nothing.
LOC:MyVar1 always works, LOC:MyVar2 is always blank...