Advertisement
Guest User

Checkbox list settings

a guest
Nov 7th, 2016
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.91 KB | None | 0 0
  1. {
  2.     "label": "Background repeat",
  3.     "description": "Set how the background should repeat. \"No repeat\" is default.",
  4.     "key": "style$1",
  5.     "view": "/App_Plugins/tea.grid-settings/icon-select-list/icon-select-list.html",
  6.     "applyTo": "row",
  7.     "modifier": "background-repeat:{0};",
  8.     "defaultConfig": {
  9.       "selectMultiple": false,
  10.       "displaySelectInversed": false,
  11.       "items": [
  12.         {
  13.           "icon": "icon-thumbnails-small",
  14.           "text": "Repeat",
  15.           "value": "repeat"
  16.         },
  17.         {
  18.           "icon": "icon-width",
  19.           "text": "Repeat horizontal",
  20.           "value": "repeat-x"
  21.         },
  22.         {
  23.           "icon": "icon-height",
  24.           "text": "Repeat vertically",
  25.           "value": "repeat-y"
  26.         },
  27.         {
  28.           "icon": "icon-stop",
  29.           "text": "No repeat",
  30.           "value": "no-repeat"
  31.         }
  32.       ]
  33.     }
  34.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement