模式表单选择onChange事件

时间:2017-04-30 15:12:59

标签: angularjs angular-schema-form

我正在使用架构表单,我正在尝试捕获onChange事件like it says here,以便保存所选的值。

vm.form = [{
   key: 'RelationType',
   type: 'select',
   fieldHtmlClass: 'validationStyle',
   onChange: function (modelValue, form) {
       debugger;
       console.log("Value is", modelValue);
  },
   titleMap: JSON.parse(typeList)
}]

但我从未在debugger函数中点击onChange,在该函数中,还有另一种方法吗?

0 个答案:

没有答案