Quiero implementar la funcionalidad mover para un nodo en jstree. ¿Es el movimiento lo que se debe implementar o arrastrar y soltar? Alos, será bueno tener un código de trabajo que vincule el contenedor con el evento y el código del evento.jstree mover, arrastrar y soltar
Respuesta
Solo necesita usar el complemento dnd si no necesita hacer cumplir las reglas de movimiento (no permita que ciertos nodos se muevan a otros nodos, etc.) Si necesita aplicar reglas de movimiento, puede agregar el plugin crrm.
Consulte la Reorder only demo de la documentación de dnd pluign para ver un ejemplo de esto. La documentación es muy pobre, por lo que deberá usar la herramienta de desarrollador en su navegador para ver cuáles son las propiedades del parámetro para la devolución de llamada check_move
. Para el ejemplo en la documentación, m.o
se refiere a su nodo arrastrado y m.r
se refiere a su nodo de destino.
También es probable que tenga que ser notificado cuando se mueve un nodo, por lo que se unen al evento move_node.jstree
al inicializar el árbol:
$("#treeHost").jstree({
...
}).bind("move_node.jstree", function (e, data) {
// data.rslt.o is a list of objects that were moved
// Inspect data using your fav dev tools to see what the properties are
});
})
$("#demo1").jstree({
....
.bind("move_node.jstree", function (e, data) {
/*
requires crrm plugin
.o - the node being moved
.r - the reference node in the move
.ot - the origin tree instance
.rt - the reference tree instance
.p - the position to move to (may be a string - "last", "first", etc)
.cp - the calculated position to move to (always a number)
.np - the new parent
.oc - the original node (if there was a copy)
.cy - boolen indicating if the move was a copy
.cr - same as np, but if a root node is created this is -1
.op - the former parent
.or - the node that was previously in the position of the moved node */
var nodeType = $(data.rslt.o).attr("rel");
var parentType = $(data.rslt.np).attr("rel");
if (nodeType && parentType) {
// TODO!
}
})
});
- 1. arrastrar y soltar sin mover el elemento
- 2. Jquery ordenable arrastrar y soltar no muestra el cursor 'mover'
- 3. Javascript Arrastrar y soltar cuadrícula
- 4. ¿Arrastrar y soltar polyfill?
- 5. Swing arrastrar y soltar
- 6. ipad arrastrar y soltar
- 7. ItemsControl Arrastrar y soltar
- 8. UICollectionView efectiva arrastrar y soltar
- 9. desactivar texto arrastrar y soltar
- 10. arrastrar y soltar objetos personalizados
- 11. Arrastrar y soltar usando SendMessage
- 12. Arrastrar y soltar en Treeview
- 13. HTML5 Arrastrar y soltar nodos
- 14. Arrastrar y soltar en MobileSafari?
- 15. Arrastrar y soltar con Ember.js
- 16. Arrastrar y soltar desde Thunderbird
- 17. Trello arrastrar y soltar efecto
- 18. arrastrar y soltar controles winform
- 19. Arrastrar y soltar con columpio
- 20. Arrastrar y soltar en Safari iOS: no arrastrar, no responder para soltar en el escritorio/iPad
- 21. Implementar arrastrar y soltar en Gingerbread
- 22. NSTableView y NSOutlineView de arrastrar y soltar
- 23. UITableView toque y mantenga + arrastrar y soltar
- 24. Cambio del cursor del mouse para HTML5 Arrastrar y soltar archivos (GMail Arrastrar y soltar)
- 25. arrastrar un JLabel con un TransferHandler (arrastrar y soltar)
- 26. Arrastrar/soltar iPhone
- 27. Excepción tragada al arrastrar y soltar
- 28. JQuery Arrastrar y soltar problemas de posicionamiento
- 29. Arrastrar y soltar en Desktop/Explorer
- 30. Arrastrar y soltar con una imagen
Gracias Bojin. Esto fue útil. –
Parece que el complemento crrm se ha eliminado en v3 del complemento a partir de febrero de 2014.. . ¿Alguna sugerencia sobre cómo trabajar con los objetivos de caída condicionales dada esta restricción? –
¿Se supone que debemos usar el plugin Types ahora en combinación con DnD para lograr lo que solía ser en CRRM? –