Skip to end of banner
Go to start of banner

Example 4 - Dependent custom fields

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

In order to use the screen values for a field in the data source, you have to add it as dependent field. 

 

 Example: Let's suppose we have two custom fields: one KCF - Single Autocomplete and one KCF - Multiple Autocomplete, the second one is populated depending on the value of the first one.

An easy example would be: the first custom field has two options: 0 and 1, and the second one contains the numbers between 0 and 100 whose rest of division at two, depending on the value selected on the first one. 
You can see the corresponding data sources below: 


The data source for the first custom field: 

return {"AFRICA", "ASIA", "EUROPE", "AMERICA", "OCEANIA"};


 The data source for the second custom field: 

string x = argv["customfield_10101"];
string[] res = sql("myDB", "select country from countries where continent like '" + x + "'");
return res;


In the issue view screen, the result would look like this: 


  • No labels