I was having the same issue. The way I solved it was by changing the view's code to replace the dash character with the empty string:
<div id="divItems">
@foreach (var item in Model)
{
<div id="@string.Format("item_{0}", item.Id.ToString().Replace("-", string.Empty))">
@item.Title
</div>
}
</div>
Note: I used div instead of ul/li for my situation.
My javascript looks like this:
$("div#divItems").sortable({
cursor: "move",
update: function (event, ui) {
var container = $(this);
var sequence = container.sortable("serialize", { key: "Sequence" });
$.post("@Url.Action("EditSequence")", sequence, function (data) {
if (data.success) {
container.fadeTo("normal", 0, function () {
container.fadeTo("normal", 1);
});
} else {
alert(data.message);
}
});
}
});
Note: I changed the key to 'Sequence' and the fadeTo() combo is used for visual feedback to the user that the sequence saved successfully.
My Controller Action method looks like this:
// POST: /Showcase/EditSequence?Sequence=<Guid List>
[Authorize]
[HttpPost]
public ActionResult EditSequence(List<Guid> Sequence)
{
try
{
for (int i = 0; i < Sequence.Count; i++)
{
var item = repos.GetSingle(Sequence[i]);
if (item != null)
{
item.Seq = (i + 1);
}
}
repos.Save();
return Json(new { success = true, message = "Sequence has been saved!" }, JsonRequestBehavior.DenyGet);
}
catch (Exception ex)
{
return Json(new { success = false, message = ex.Message }, JsonRequestBehavior.DenyGet);
}
}
The model binder takes care of converting the Guid strings without the dashes into a List<Guid> bound to the Sequence parameter.