Skip to content

I want to customize the options for the status column

Answer

Change the contents of the options list in the same way as for the "Classification" column.


Prerequisites

  1. Set the code value as a numerical value.
  2. If the code value is set to a numerical value equal to or greater than the value set in "CompletionCode" in "General.json", the option will be considered complete.
  3. The class name you set must start with "status-".

Overview

The standard contents of the "Status" column are as follows, but you can customize them as you like.
Standard options of the Status column

Operation Procedure

  1. Open the target table and click "Manage" →"Manage Table" from the navigation menu.
    Opening Manage Table from the navigation menu

  2. Open the "Editor" tab, select the "Status" column, and click the "Advanced Settings" button.
    Editor tab with the Status column selected and the Advanced Settings button

  3. Change the contents of the "Option List".
    Option List in the advanced settings, where the status options are edited

  4. The format is as follows, separated by commas.
    [Code value to register in database], [Editor screen display], [List screen display], [Style sheet class name]
    You can freely change the style by creating a new style such as "status-original-color" and registering it in "Style".

    .status-original-color {
        color:red;
        background:yellow;
    }