SAPUI5 - Drag & Drop Row on List (Re-order Rows)
<List id = "idAttachList" headerText = "{i18n>piList}" items = " { path : 'sendFileData>/Attach' } " mode = "MultiSelect" updateFinished = "onAttachListUpdateFinished" selectionChange = "onAttachListSelectionChange" > <dragDropConfig> <dnd:DragDropInfo sourceAggregation = "items" targetAggregation = "items" dropPosition = "Between" drop = "onAttachRowMove" /> </dragDropConfig> <items> <CustomListItem> </CustomListItem> </items> </List> //------ controller.js onAttachRowMove : function ( oEvent ) { var sDropPositio...