我可以在撇号cm小部件中将select / option数据类型添加到字段类型吗?

时间:2017-10-06 18:39:40

标签: apostrophe-cms

我有一个列小部件,我正在尝试创建一个预先填充的下拉列表,用户可以从中选择对应于bootstrap类名“col-md-6”等的值。

Library.BusinessLogicLayer.Models2

1 个答案:

答案 0 :(得分:3)

我想出了答案

  type: 'select',
      name: 'column1width',
      label: 'Column 1 Width',
      contextual: false,
      choices: [
        {
          label: '1 Column',
          value: 'col-md-1'
        },
        {
          label: '2 Column',
          value: 'col-md-2'
        }
      ]