如何使用angular-formly为kendo-ui multiselect设置自定义模板

时间:2016-07-10 15:02:15

标签: angularjs kendo-ui angular-formly

我正在尝试使用kedno-ui multiselect和angular-formly为multiselect创建自定义模板。我只能得到正常的选择下拉字段而不需要多元化... 以下是jsbin

上的示例

1 个答案:

答案 0 :(得分:0)

使用配置应用运行解决。

 `app.run(function (formlyConfig) {
    formlyConfig.setType({
        name: 'multiSelect',
        extends: 'select',
        template: '<select kendo-multi-select k-options="" ng-model="model[options.key]" class="form-control" multiple></select>'
    });
});`

设置就像这样。

`vm.fields = [       
  {
    key: 'multiSelect',
    type: 'multiSelect',
    templateOptions: {
      type: 'multiSelect',
      label: 'Fruits',          
      options: data
    }
  },`

您可以看到示例here