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 Version History

« Previous Version 5 Next »

The "Simple Toggle" field empowers you to craft your own toggle, whether it be for options like "True/False," "Yes/No," or "Approved/Rejected" — the choice is yours!


Field Configuration

Before starting the field configuration, please follow the instructions for creating custom fields

Create a Custom Field

Step 1: Set a name and description

Provide a good name for the new custom field. Make it descriptive, concise, and easy to understand for others who will use it. Avoid using ambiguous or overly technical terms.

Step 2: Set labels and color

You have the option to adjust the field by adding labels and colors for the two states, "Yes" and "No." Furthermore, you can personalize the toggle by selecting a background color and adjusting its size according to your preferences.


Field view and edit


Related Use Cases


Jira Service Management (JSM)

Before you can add a custom field for Jira Service Management (JSM) projects, you first need to setup the custom field

https://help-seibertmedia.atlassian.net/wiki/spaces/ACF/pages/46170113/Simple+Toggle#Field-Configuration

Then follow this guide to use the field in the request form or the portal view

Add Custom Fields to Jira Service Management


JQL expression

The field is an object type with a property status.

${fieldName}.status = "true" | "false"

Example: a search for all issues with toggle to “Yes“ it may look like this

"Simple Toggle.status" = "true"


Data Structure (Automation)

To set the value via automation, you need the following object structure

{
  "status": true | false
}


  • No labels