Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi
we need to show/hide a custom field on CREATE SCREEN based on value of other customfield.
our driving customfield is a Radio Buttons based on its value we would like to show/hide other fields.
im trying to implement this with routines lfwatch/lfShow/lfHide
my problem is how do i access the current value of the radioButton field?
the radio button field is Gender = "customfield_11401"
i already tried argv["Gender"] , argv["customfield_11401"] but it doesnt seem to work.
TIA,
eric
Hi Eric,
You need to use the lfInstantHook routine to access the fields on create screen. Here you can find more details about it:
http://confluence.kepler-rominfo.com/display/JJUP30/lfInstantHook
MainScript.sil
lfInstantHook({"Gender"}, "Hook.sil");
Hook.sil
lfWatch("Gender", { "Gender" }, "Watch.sil");
Watch.sil
// use argv["Gender"] to access the CFs referenced in the Hook.sil lfWatch.
Regards,
Silviu
Hi Silviu, since i want to monitor the value change on customfield Gender, I combined lfwatch/lfInstanthook routines. thanks a lot. eric
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that's the full "recipe". I have updated the answer to better reflect the LF flow if anyone else needs it. Have fun with Live Fields :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sounds like something is not working properly. What's your JIRA version and browser? Alexandra, can you have a look on this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Indeed, this should not happen. We haven't made changes in live fields in the last period, so, please tell us the JIRA/JJUPIN versions.
Thank you,
Alexandra
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.