Callback: | AEFSetValueToGadgetValueAsStringToken |
Arguments: |
Gadget - Gadget whose value is to be modified srcGadgetPath - path to source gadget delimiters - delimiters between tokens |
|
|
Description: | For single-valued destination gadgets, sets value of the destination gadget to the value of the specified source gadget (tokenized with the specified delimiter). For List destination gadgets, deletes existing List entries and then inserts the value of the specified source gadget (tokenized with the specified delimiter). The value retrieved from the source gadget is the first token found. |
Example: |
Button { Name = SetGadgetValue; Title = "SetGadgetValue"; /* This button will Set the FinalValue gadget * with the first token in InitialValue */ Commands = AEFSetValueToGadgetValueAsStringToken&/.../FinalValue ("/.../InitialValue",":"); } |
NOTE: | If the sourceGadget is a List, the value of the sourceGadget will be a comma-delimited string composed of all List values. |