Versions Compared
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Info |
---|
Since version 5.8.0.x it is no longer required to have Power Scripts installed for the dependency feature to work! Power Custom Fields has grown up and can do it all by itself now. |
To use the screen values for a field in the data source, add it as dependent field from the field configuration > Dependencies.Image Removed
Image Added
Example: Let's say we have two custom fields: PCF - Single Autocomplete(let's name it Continent) and PCF - Multiple Autocomplete(let's name it Countries), the second one is populated depending on the value of the first one.
An easy example is following: we have a "countries" table with two columns: country and continent. Our first field will select the continents and the second one will contain the countries from that continent.
The following data source represents the first custom field:
Code Block |
---|
select distinct continent from countries; |
The following data source represents the second custom field:
Code Block |
---|
select country from countries where continent = {customfield_10800} |
The following result will be in the issue view screen:
Note |
---|
For the moment, dependent fields can only be used by the two custom fields with autocomplete. Starting with Power Custom Fields PRO 4.0.0, you can use the dependent fields on SQL data sources as well. In order to get the value set on the screen for one custom field, reference it like this: "argv[customfield_id]". |
See More
Child pages (Children Display) | ||
---|---|---|
|