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 am attempting to implement drag-table in my application.
I have injected 'Dragtable' into my application and included the following scripts
'Dragtable'
angular-dragtable.js jquery-3.1.1.js angular-1.5.5.js
along with the jquery-ui files core.js and widget.js (did not find mouse or sortable in my distribution.
jquery-ui
core.js
widget.js
mouse
sortable
This is in my view
<thead> <tr> <th drag-me drop-me>One</th> <th drag-me drop-me>Two</th> </tr> </thead> <tbody> <tr> <td>this</td> <td>that</td> </tr> <tr> <td>some</td> <td>another</td> </tr> </tbody> which renders like this on page load: Hovering over a table header gives me the drag cursor but when I drag column One to the right and drop it past column Two I see this: And attempting this move a second time results in this: Any help appreciated!
<thead> <tr> <th drag-me drop-me>One</th> <th drag-me drop-me>Two</th> </tr> </thead> <tbody> <tr> <td>this</td> <td>that</td> </tr> <tr> <td>some</td> <td>another</td> </tr> </tbody>
Hovering over a table header gives me the drag cursor but when I drag column One to the right and drop it past column Two I see this:
And attempting this move a second time results in this:
Any help appreciated!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am attempting to implement drag-table in my application.
I have injected
'Dragtable'
into my application and included the following scriptsalong with the
jquery-ui
filescore.js
andwidget.js
(did not findmouse
orsortable
in my distribution.This is in my view
The text was updated successfully, but these errors were encountered: