Here is a very beta version of the members-module with drag&Drop for items and groups.
Note: BETA!
There are some other changes, like picture/file handling, also beta

Drag&Drop ONLY works, when Sorting is generally set to "by position ASC" (default)
It doesnst make sense to have drag&drop wiht other kinds of sorting, and "by position DESC" is too tricky for me.
The first group is not moveable, but you can use the arrow button. The reason: If the first group would be moveable, one could move a member before the first group - this member would loose the connection to the group.
There will be no problem if you install it fresh. (i hope)
If you make an upgrade, there are 2 things to change in module_settings.php:
$show_picture = 2; // 2!
And theres is a older bug in the bottom of this file:
if ($show_picture = 1) {
is wrong, must be
if ($show_picture == 1 ) {
or delete the whole block, it isnt neccesary anymore.