Fix some usrs...

This commit is contained in:
Paulo Gustavo Veiga 2012-04-15 06:59:32 -03:00
parent 728ef7eb6b
commit b245b97db3
2 changed files with 8 additions and 5 deletions

View File

@ -90,8 +90,11 @@ jQuery.fn.dialogForm = function(options) {
contentType:"application/json; charset=utf-8",
success : function(data, textStatus, jqXHR) {
if (options.redirect) {
var mapId = jqXHR.getResponseHeader("ResourceId");
window.location = options.redirect + "&mapId=" + mapId;
var resourceId = jqXHR.getResponseHeader("ResourceId");
var redirectUrl = options.redirect;
redirectUrl = redirectUrl.replace("{header.resourceId}", resourceId);
window.location = redirectUrl;
} else if (options.postUpdate) {
options.postUpdate(formData);
}

View File

@ -169,7 +169,7 @@
modal: true,
acceptButtonLabel : "Create",
cancelButtonLabel : "Cancel",
redirect: "c/editor.htm?action=open",
redirect: "c/map/{header.resourceId}/edit.htm",
url : "../service/maps"
});
});
@ -195,7 +195,7 @@
modal: true,
acceptButtonLabel : "Duplicated",
cancelButtonLabel : "Cancel",
redirect: "c/editor.htm?action=open",
redirect: "c/map/{header.resourceId}/edit.htm",
url : "../service/maps/" + mapId
});
}
@ -266,7 +266,7 @@
});
$("#buttons .printMap").button({
icons: { primary: "ui-icon-trash" }
icons: { primary: "ui-icon-print" }
}).click(function() {
var mapIds = $('#mindmapListTable').dataTableExt.getSelectedMapsIds();
if (mapIds.length > 0) {