Callback: | AEFPrependGadgetValueAsStringToken |
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 by delimiter). For List destination gadgets, deletes existing List entries and then inserts the value of the specified source gadget (tokenized by delimiter). The value retrieved and used is the first token found in the source gadget. |
Example: |
Button { Name = SetGadgetValue; Title = "SetGadgetValue"; /* This button will Set the FinalValue gadget * with the value stored in the InputValue gadget */ Commands = AEFPrependGadgetValueAsStringToken&/.../FinalValue ("/.../InputValue",":"); } |
NOTE: | If the sourceGadget is a List, the value of the sourceGadget will be a comma-delimited string composed of all List values. |