-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
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
Get drag events while dragging. #86
Comments
Hi there, The One option might be to extend Here is an example of how to extend Out of interest, why do you want to capture dragging events? The drag renderer is only really meant to be for drawing things on screen. If you want to do some business logic, it might be worth me adding another method to Thanks, |
Hi Steve, So basically I only want the drag events when drag started, while dragging, drag canceled, drag ended. I want the position of the gesture recognizer on the screen while dragging so that I can highlight the tableview on which I hover. Thanks, |
Hi Kalpesh, Ok. Take a look at this use case. It shows you how to implement a custom renderer that will 'shake' the dragging item when its hovering over one of the tables, which you could easily adapt to highlight the actual table also. Again, take a look at this implementation of Hope this helps. Thanks, |
Hi Steve, Thanks for the guidance. I wanted to achieve the drag and drop functionality like Trello (https://trello.com/). I have created a demo project here: https://github.com/KalpeshTalkar/DragDropBoard Thanks, |
To get drag events while dragging, I used I3DragRenderDelegate.
But after implementing the delegate, the snapshot view is not rendered.
Why do I need to implement all the methods if I implement I3DragRenderDelegate?
How will I get a snapshot view?
The text was updated successfully, but these errors were encountered: