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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.