I currently have a frameset with 2 frames, “Left” and “Right”.
Is it possible (preferably using formula) to get field values from a form in the “Right” frame, and populate a field in the document in the “Left” frame?
Thanks
I currently have a frameset with 2 frames, “Left” and “Right”.
Is it possible (preferably using formula) to get field values from a form in the “Right” frame, and populate a field in the document in the “Left” frame?
Thanks
Subject: Field Values From Other Frames
It should be possible using @Formulas, but I must admit, that I don’t get it to work. It appears to me, that somewhere between Notes 6 and 7 @UpdateFormulaContext changed its behavior.
However, you can easily do what you want with one line of JavaScript. Given, that the left frame is still named “Left”, the right one “Right” and the fields are called “Target” and “Source”, this would be the code you could place in a button:
Left.document.forms[0].Target.value = document.forms[0].Source.value;
Remember, that JavaScript is case-sensitive.