Home Reference Source

src/components/radio/editForm/Radio.edit.display.js

export default [
  {
    key: 'placeholder',
    ignore: true
  },
  {
    type: 'select',
    input: true,
    label: 'Options Label Position',
    key: 'optionsLabelPosition',
    tooltip: 'Position for the label for options for this field.',
    dataSrc: 'values',
    weight: 32,
    defaultValue: 'right',
    data: {
      values: [
        { label: 'Top', value: 'top' },
        { label: 'Left', value: 'left' },
        { label: 'Right', value: 'right' },
        { label: 'Bottom', value: 'bottom' }
      ]
    }
  },
  {
    type: 'checkbox',
    input: true,
    key: 'inline',
    label: 'Inline Layout',
    tooltip: 'Displays the checkboxes/radios horizontally.',
    weight: 650
  }
];