We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need cancel dropping in 'drop' callback. 'return false' dont work because, List.invokeCallback('drop',...) always return 'true'.
invokeCallback: function invokeCallback(expression, event, index, item) { var fn = this[expression]; if (fn) { fn({ event: event, index: index, item: item || undefined, list: this.list, external: !this.vddlDragTypeWorkaround.isDragging, type: this.vddlDragTypeWorkaround.isDragging ? this.vddlDragTypeWorkaround.dragType : undefined }); } --Attention--> return fn ? true : false; },
While must be
return fn({...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need cancel dropping in 'drop' callback.
'return false' dont work because, List.invokeCallback('drop',...) always return 'true'.
While must be
return fn({...
The text was updated successfully, but these errors were encountered: