Mindmap list new using rest services ...

This commit is contained in:
Paulo Gustavo Veiga
2012-04-06 20:18:25 -03:00
parent bca68f407d
commit 70b8fe8727
7 changed files with 75 additions and 121 deletions

View File

@@ -50,7 +50,6 @@ jQuery.fn.dataTableExt.removeSelectedRows = function() {
url: "../service/maps/batch?ids=" + mapIds.join(","),
type:"DELETE",
success : function(data, textStatus, jqXHR) {
console.log("delete success");
var trs = $('.select input:checked[id!="selectAll"]').parent().parent();
trs.each(function() {
$('#mindmapListTable').dataTable().fnDeleteRow(this);
@@ -60,6 +59,4 @@ jQuery.fn.dataTableExt.removeSelectedRows = function() {
alert("Unexpected error removing maps. Refresh before continue.");
}
});
};