Skip to content

Change the Order of the Fields


The fields in a panel are displayed in the order specified with the fieldsets element in the panel configuration files.

For general information about how to customize the PLOSSYS 4 panel, refer to Customize the Panel


This is how you change the order the fields in a panel:

  1. Unless done, prepare customized panel configuration files panel-<customer_name>.json and settings-<customer_name>.json. For more information, refer to Customize the Panel.

  2. In both customized panel configuration files, change the order of the elements in the fieldsets list:

    Example

    {
        ...
        "fieldsets": [
          {
            ...
            "fields": [
              "Printer",
              "Copies",
              "PLS_FLAGPAGE",
              "Duplex",
              "Quality",
              "Color",
              "Format",
              "rotationAngle",
              "cropSelection"
            ]
          }
        ...
        ]
    }
    
  3. Restart the following services:

    • seal-operator-p4

    • seal-operator-server


Back to top