Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
titleAvailability

This routine is available starting with SIL Engine 4.8.0.8.

...

Excerpt

Retrieves a list of screen scheme configurations for a particular issue type screen scheme.

Parameters

Parameter name

Type

Required

Description

issueTypeScreenSchemeName

string

true

The name of the issue type screen scheme.

...

Code Block
JGeneric[] values = admGetScreenSchemeFromITScheme("SALES: Scrum Issue Type Screen Scheme"); 
return values;
// String representation
// Default|SALES: Scrum Default Screen Scheme|Bug|SALES: Scrum Bug Screen Scheme

// JSON representation
/*[{
 "name": "Default",
 "value": "SALES: Scrum Default Screen Scheme"
}, {
 "name": "Bug",
 "value": "SALES: Scrum Bug Screen Scheme"
}]*/

...