How to specify the order of data objects and which are displayed in each step - kwantu/platformconfiguration GitHub Wiki

Created by Rob Worthington on Jan 28, 2018. Copied from Kwantu Wiki on 2018-12-17.


This example shows the code from the step section. This "show" defines whether the data object is visible in that step or not.

Code example 1.

                                                {
                                                    "setId": "TACTraining",
                                                    "show": false,
                                                    "views": [
                                                        {
                                                            "label": {
                                                                "i18n": {
                                                                    "_id": "uuid",
                                                                    "en": "Edit"
                                                                }
                                                            },
                                                            "viewId": "edit"
                                                        }
                                                    ]
                                                }

This example shows the code from the sub process section. In this the "seq" defines the order in which the data objects are displayed.

Code example 2.

                        {
                            "_id": "TACIssueReview",
                            "initiateData": "history",
                            "name": {
                                "i18n": {
                                    "_id": "uuid",
                                    "en": "Monthly issue review"
                                }
                            },
                            "seq": 0
                        }