XFdestek
Kurucu Üye
Ran into an issue where
if items went to different roots. Did some tracing and the target nestable isn't triggering the change event.
More tracing it and turns out the issue is that this will never work (in nestable.js):
JavaScript:
...because
Changing it to this and things...
More tracing it and turns out the issue is that this will never work (in nestable.js):
JavaScript:
if (isNewRoot && opt.group !== pointElRoot.dataset.nestableGroup)
...because
typeof(opt.group)
is always number and typeof(pointElRoot.dataset.nestableGroup)
is always string.Changing it to this and things...