Focal Point
[SOLVED] Maintain: Passing the value of a Stack field to javascript

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/2071026072

February 08, 2008, 03:23 PM
brjohnson
[SOLVED] Maintain: Passing the value of a Stack field to javascript
Hi everyone,

I was wondering if anyone knew how to pass the contents of a field in a given stack to javascript.
I want to dynamically change which radio button is checked using the contents of a field in a stack and I'm not sure how to accomplish this. any advice would be appreciated.

Bryan

This message has been edited. Last edited by: brjohnson,


Bryan Johnson
WebFOCUS 7.7.03
Maintain
Win 7
Excel, PDF, HTML
February 08, 2008, 03:32 PM
Alan B
For radio buttons, I think I usually populate from a stack, say a Stack of A12.

Then if the setting of another field signifies which one is to be checked, I set FocIndex in the stack that populates the radio buttons.
.
.
Declare radioStack/Stack of a12;
.
.
radioStack(1)='Option1';
radioStack(2)='Option2';
radioStack(3)='Option3';
.
.
If value expression then radioStack.FocIndex = 1; else...
.
.

If you really want to pass a value down to js, place it in a hidden field, and access that field in the js.

This message has been edited. Last edited by: Alan B,


Alan.
WF 7.705/8.007
February 08, 2008, 04:37 PM
brjohnson
Thanks Alan that was helpful

Bryan


Bryan Johnson
WebFOCUS 7.7.03
Maintain
Win 7
Excel, PDF, HTML