x-editable:取消evert的回调

时间:2015-08-10 22:23:57

标签: javascript x-editable

对于Twitter Bootstrap X Editable(https://vitalets.github.io/x-editable/docs.html),有成功和错误的回调。但取消没有任何意义。有没有办法监听特定可编辑的取消事件?

1 个答案:

答案 0 :(得分:5)

想出来:

  $('#element', this.$e).editable({
    type: 'text',
    toggle: 'manual',
    success: function(response, newValue) {
      //some action
    }.bind(this)
  }).on('hidden', function(e, reason) {
    if (reason == "cancel") {
      //some action
    }
  });

您可以在“隐藏”上定义一个监听器,并检查取消或提交或手动的原因。