Hi Sreehari,
Sorry for the late response! I completely overcomplicated the solution and was able to get this done with this code:
| $(document) | ||||||||||||||||
| .ready( | ||||||||||||||||
| function() { | ||||||||||||||||
| setTimeout( | ||||||||||||||||
| function() { | ||||||||||||||||
| $( | ||||||||||||||||
| jQuery.sap | ||||||||||||||||
| .byId("tableID tbody")) | ||||||||||||||||
| .sortable( | ||||||||||||||||
| { | ||||||||||||||||
| connectWith : ".ui-sortable" | ||||||||||||||||
| }) | ||||||||||||||||
| .disableSelection(); | ||||||||||||||||
| }, 1000); | ||||||||||||||||
| }); |