Is the Nx Cloud up? Visit our Status Page for the current health and performance of the Nx Cloud.

Status Page

Tree on Plug-in setting menu.

Answered

Comments

1 comment

  • Permanently deleted user

    Hi Jason,

    Sure thing you can. To have an example, please refer to Stub analytics plugin manifest that you can find here:

    metadata_sdk/samples/stub_analytics_plugin/src/nx/vms_server_plugins/analytics/stub/engine.cpp

    Refer to "deviceAgentSettingsModel" which is a part of engine manifest.

    What you are looking for is a thing called "sections", e.g.:

    "sections": [
        {
            "type": "Section",
            "caption": "Example",
            "items": [
            .....

            ]

            "sections": [
                {
                    "type": "Section",
                    "caption": "Nested section",
                    "items": [

                    .......

                    ]

        },

    ......

    ]

    It will add a section with a caption "Example" in your Plugin settings and a section with a caption "Nested section" that is nested inside "Example" section.

    Basically, that's it: this way you can develop a tree-like structure in you Plugin settings.

     

    0

Please sign in to leave a comment.