I'm making a c# program
I want to create an issue with custom field (a select list cascading)
But I don't know how initialize the child value, my objectif is to initialize the list like "ParentValue" --> "ChildValue"
var settings = new JiraRestClientSettings()
{
EnableRequestTrace = true
};
settings.CustomFieldSerializers.Add("https://intranet.jira.Link/jira", new SingleObjectCustomFieldValueSerializer("Selling Details"));
issue.CustomFields.Add("SelectedListName", "ParentValue");
Hi,
I finish my program a few month ago and my solution for this is
issue.CustomFields.AddCascadingSelectField("select list cascading", ParentValue()[i], ChildValue()[i]);
Have a nice day
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.