How to move items with in VBox(Change order by Dragging) in JavaFX?
i want to drag TitledPane with in a VBox.I have n number of Titlepane's in a VBox. I want to change the order of them when dragded.I tried with some of MouseEvents and DragEvents. But its not working for me. But i need the indexes of which Titledpane is moved to which place. Based on that i need to do something in backend. Please help me. Thanks This works for me... private static final String TAB_DRAG_KEY = "titledpane"; private ObjectProperty<TitledPane> draggingTab; @Override public void start(Stage primaryStage) throws Exception { draggingTab = new SimpleObjectProperty<TitledPane>(); VBox