I'm using x-editable with jqueryui library (jqueryui-editable v1.5.1)
However I've suddenly got this error :
Cannot read property '_off' of undefined
It seems the error is raised by this line :
this.container()._off(this.container().element, 'mouseover focusin');
line 4717, because this.container() is null.
I don't really figure out why.. ?
It seems
Bootstrapandjqueryui-editableconflict each other.I've found the explanation on the project creator's github
The second solution, using
$.fn.bstooltip = $.fn.tooltip.noConflict();worked for me.