jsonform icon indicating copy to clipboard operation
jsonform copied to clipboard

{{name}} in tabarray after change in select

Open StacyMader opened this issue 6 years ago • 0 comments

I would like to display the option selected in the parent tab of a tabarray as shown below. However, I'm not able to see how it is done. Any suggestions?

Thanks, Stacy.

`{ "schema": { "templates": { "type": "string", "enum": ["Standard","Fold","Search"], "default": "Standard" }, "standard": { "type": "string", "title": "Standard setting" }, "fold": { "type": "string", "title": "Fold setting" }, "search": { "type": "string", "title": "Search setting" } }, "form": [ { "type": "tabarray", "items": {

    "type": "section",
     "legend": "{{idx}}. {{value}}",
   
    "items": [
       {
        "type": "selectfieldset",
        "title": "Select Template",
        
        "items": [
          { 
            "key": "standard",
            "legend": "Standard"
          },
          { 
            "key": "fold",
            "legend": "Fold"
          },
          {
            "key": "search",
            "legend": "Search"
        }
      ]
      }
    ]
  }
}

] } `

StacyMader avatar May 02 '18 04:05 StacyMader