When a Fields' Choices are Updated - Will the Deluge Change Automatically?
For example, I have a radio button list of 5 choices:
Favorite Fruit:
- Apple
- Banana
- Television
- Kiwi
- Persimmon
Now in my deluge script I have:
if (Favorite == "Television") {
do something;
}
My question is, if I update "Television" when editing the field to "Orange", will the deluge script automatically change to:
if (Favorite == "Orange") {
do something;
}
Now, my specific situation is a LOT more complex. As I have a lot more complex code and the script is sometimes in the script of another form or a stateless form, or sometimes even in a global variable. Or sometimes it is in a criteria section for a view. Will it updates all of those? Or just a few.
Thus, what is the methodology that you follow when auto changing the deluge script.
Thanks!