Hi,
I want to use live fields with Kepler Custom Fields Pro. I am using it as a Single Autocomplete.
I have managed to watch my KCF+ field like this:
lfWatch("customfield_10700", {"issueType", "customfield_10700"}, "C:/jira/jira_home/silprograms/live_fields/hide_summary.sil", {"change"});
Obviously, my field is customfield_10700. The script dose call hide_summary.sil succesfully.
But my problem is that in hide_summary.sil, I can not read the value that has just been entered in the field. I have tried to use : argv["customfield_10700"] , but it was empty.
The value entered is read successfully in the post function but I need it in Live fields because I need to change the form based on the value entered.
Any help is appreciated.
Hi,
As I suggested here, try to add the custom field first in the related fields list.
For example, you can use the code below for main script:
lfWatch("customfield_10700",{"customfield_10700", "issueType"}, "C:/jira/jira_home/silprograms/live_fields/hide_summary.sil",{"change"});
Raluca
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Sadek,
Try not to specify the events on lfwatch like below.
lfWatch(
"customfield_10700"
, {
"issueType"
,
"customfield_10700"
},
"C:/jira/jira_home/silprograms/live_fields/hide_summary.sil"
);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Eric for your response. But I have tried your suggestion and it did not work. I have tried many other ways and they did not work. The only one that did work was Raluca's suggestion above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Still thinking about joining us for Team '25 Europe? Early bird has been extended for just one week! Now’s the time to lock in your lowest rate. Use code TEU25COMM-20 to save 20% at checkout. Hurry, this only lasts for 1 more week.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.