Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
titleRequired apps

Power Scripts™ for Jira v2.5.3+ (server)

Level: BASIC

...

Code Block
languagejava
titleliveField.sil
linenumberstrue
lfInstantHook({"customfield_XXXXX", "customfield_YYYYY"}, "hook.sil");
lfWatch("customfield_XXXXX", {"customfield_XXXXX", "customfield_YYYYY"}, "customFieldhook.sil", {"change"});
Code Block
languagejava
titlehook.sil
linenumberstrue
string v = argv["customfield_XXXXX"];

if (v == "Option 1") {
    lfAllowSelectOptions("customfield_YYYYY","None|1A|1B|1C");
} else if (v == "Option 2") {
     lfAllowSelectOptions("customfield_YYYYY","None|2A|2B");
} else {
     lfAllowSelectOptions("customfield_YYYYY", {"None"});
}

Result