<script src="js/jquery.tablednd.0.8.min.js"></script>
<script text="text/javascript">
console.log('hello')
- $(document).ready(function() {
- console.log('ready')
- $('#item_schedule table').tableDnD({
- onDragStart: function (table, row) {
- console.log(table)
- console.log(row)}
- ,onDrop: function (table, row) {
- console.log(table)
- console.log(row)}
- })
+ /** add table DnD as behavior **/
+ function onDragStart (table, row) {
+ console.log(table)
+ console.log(row)
}
- )
+ function onDrop(table, row) {
+ console.log(table)
+ console.log(row)
+ }
+
+ var inserts = {
+ '#item_schedule table': function (e) {
+ // We can't use e directly because we need a JQUery Object to call tableDnD
+
+ $('#item_schedule table').tableDnD({onDragStart: onDragStart, onDrop: onDrop})
+ }
+ }
+Behaviour.register(inserts);
</script>