如何使用CanJS触发验证onblur?

时间:2014-11-14 02:18:14

标签: javascript validation canjs canjs-model

我有一个Can JS模型,init运行this.validateNonBlank("title");。当我退出onblur字段时,如何触发该验证以运行title?现在它仅在另一个元素触发change事件时触发。

can.Model.Cacheable("CMS.Models.Program", {
  root_object : "program"
  , root_collection : "programs"
  ...
  , links_to : {
    "Regulation" : "ProgramDirective"
    , "Policy" : "ProgramDirective"
    ...
    , "Market" : {}
  }
  , init : function() {
    var that = this;
    this.validateNonBlank("title");
    this._super.apply(this, arguments);
  }
}, {
});

(完整代码为here。)

0 个答案:

没有答案