Docs
API
  • un(eventName: String, handler: Function)

    Unset handler on form event.

    Example

    
    function onSet(form, o){
      ...
    }
    
    form.on('set', onSet);
    ...
    
    form.un('set', onSet);