Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
{ "version": 1.0,
  layout:
  { "matrix": [["id1", "id2"], ["id3", "id4"]], 
    "layoutStyle": "COLUMNS_AND_ROWS"
  },
  configuration:
  {
     "id1" :
        {"refreshPeriod", 30000,
         "state" : "OPEN", /* State of the widget */
         "widgetConfiguration" : /* Arbitrary configuration items understood by the widget */

                {
 "limit                 "queryLimit" : 50
                }
     "id2" : {....}
  }
}
 

Matrix is a two dimensional array, with inner arrays corresponding to each column's contents.  Columns need not have the same number of entries.    The lists within the matrix may not contain nulls..

...

Code Block
javascript
javascript
{ "matrix": [ [["id1"]],
              [["id2"], ["id3", "id4", "id5"]],
              [["id6"]] ], 
    "layoutStyle": "ROWS_OF_COLUMNS_AND_ROWS"
  },

 

 

Alternative

 

 

 

...