In Sprint planning module, drag and drop is not working for moving backlog positionsDescriptionIn Sprint planning module, drag and drop is not working for moving backlog position.Steps to Reproduce Navigate to Agile Development > Stories > Sprint Planning.Select any group with a Group Backlog with 10 or more records.Drag and drop the record. Note that the drag and drop of the record to the move position does not work.Workaround Go to Ranking Definitions and click on New. Fill in the fields as follows: name - Group IndexRecord table - rm_storyontext column - assignment groupRelationship Table - sys_user_groupRelationship column - sys_id Click on Submit. Go to UI scripts and search for SdlcBacklogContextMenu. Replace the following lines: SdlcBacklogContextMenu.prototype.indexColumn = function() { if ( this.contextId == '-1' || this.context == 'oneoff' ) return 'team_index'; with SdlcBacklogContextMenu.prototype.indexColumn = function() { if ( this.contextId == '-1' || this.context == 'oneoff' ) return 'assignment_group_index'; In UI scripts, search for SdlcList and uncomment the following line if it is commented out: this.filterQuery += "^ORDERBY" + this.indexColumn; Related Problem: PRB1266373