2012-05-23 21:54:03 -03:00
|
|
|
$.fn.dataTableExt.oApi.fnReloadAjax = function (oSettings, sNewSource, fnCallback, bStandingRedraw) {
|
|
|
|
if (typeof sNewSource != 'undefined' && sNewSource != null) {
|
|
|
|
oSettings.sAjaxSource = sNewSource;
|
|
|
|
}
|
|
|
|
this.oApi._fnProcessingDisplay(oSettings, true);
|
|
|
|
var that = this;
|
|
|
|
var iStart = oSettings._iDisplayStart;
|
|
|
|
var aData = [];
|
|
|
|
|
|
|
|
this.oApi._fnServerParams(oSettings, aData);
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
oSettings.fnServerData(oSettings.sAjaxSource, aData, function (json) {
|
2012-05-23 21:54:03 -03:00
|
|
|
/* Clear the old information from the table */
|
|
|
|
that.oApi._fnClearTable(oSettings);
|
|
|
|
|
|
|
|
/* Got the data - add it to the table */
|
|
|
|
var aData = (oSettings.sAjaxDataProp !== "") ?
|
|
|
|
that.oApi._fnGetObjectDataFn(oSettings.sAjaxDataProp)(json) : json;
|
|
|
|
|
|
|
|
for (var i = 0; i < aData.length; i++) {
|
|
|
|
that.oApi._fnAddData(oSettings, aData[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
oSettings.aiDisplay = oSettings.aiDisplayMaster.slice();
|
|
|
|
that.fnDraw();
|
|
|
|
|
|
|
|
if (typeof bStandingRedraw != 'undefined' && bStandingRedraw === true) {
|
|
|
|
oSettings._iDisplayStart = iStart;
|
|
|
|
that.fnDraw(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
that.oApi._fnProcessingDisplay(oSettings, false);
|
|
|
|
|
|
|
|
/* Callback user function - for event handlers etc */
|
|
|
|
if (typeof fnCallback == 'function' && fnCallback != null) {
|
|
|
|
fnCallback(oSettings);
|
|
|
|
}
|
|
|
|
}, oSettings);
|
2012-05-29 22:56:14 -03:00
|
|
|
};
|
2012-05-23 21:54:03 -03:00
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
jQuery.fn.dataTableExt.selectAllMaps = function () {
|
2012-04-06 17:05:42 -03:00
|
|
|
var total = $('.select input:checkbox[id!="selectAll"]').size();
|
|
|
|
var selected = $('.select input:checked[id!="selectAll"]').size();
|
|
|
|
if (selected < total) {
|
2012-08-15 21:05:44 -03:00
|
|
|
$('.select input:!checked[id!="selectAll"]').each(function () {
|
2012-04-06 17:05:42 -03:00
|
|
|
$(this).prop("checked", true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
2012-08-15 21:05:44 -03:00
|
|
|
$('.select input:!checked[id!="selectAll"]').each(function () {
|
2012-04-06 17:05:42 -03:00
|
|
|
$(this).prop("checked", false);
|
|
|
|
});
|
|
|
|
}
|
2012-05-29 22:36:32 -03:00
|
|
|
updateStatusToolbar();
|
2012-04-06 17:05:42 -03:00
|
|
|
};
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
jQuery.fn.dataTableExt.getSelectedMapsIds = function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
var selectedRows = $('#mindmapListTable').dataTableExt.getSelectedRows();
|
|
|
|
var dataTable = $('#mindmapListTable').dataTable();
|
2012-08-15 21:05:44 -03:00
|
|
|
return selectedRows.map(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
return dataTable.fnGetData(this).id;
|
2012-04-06 17:05:42 -03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
jQuery.fn.dataTableExt.getSelectedRows = function (oSettings) {
|
2012-04-07 20:05:50 -03:00
|
|
|
return $('.select input:checked[id!="selectAll"]').parent().parent();
|
|
|
|
};
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
jQuery.fn.dataTableExt.removeSelectedRows = function () {
|
2012-04-07 20:05:50 -03:00
|
|
|
var trs = this.getSelectedRows();
|
2012-08-15 21:05:44 -03:00
|
|
|
trs.each(function () {
|
2012-05-23 01:13:00 -03:00
|
|
|
$('#mindmapListTable').dataTable().fnDeleteRow(this);
|
2012-04-06 17:05:42 -03:00
|
|
|
});
|
2012-05-29 22:36:32 -03:00
|
|
|
updateStatusToolbar();
|
2012-04-06 17:05:42 -03:00
|
|
|
};
|
2012-04-07 20:05:50 -03:00
|
|
|
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
jQuery.fn.dialogForm = function (options) {
|
2012-04-07 20:05:50 -03:00
|
|
|
|
|
|
|
var containerId = this[0].id;
|
|
|
|
var url = options.url;
|
|
|
|
|
2012-05-19 21:36:34 -03:00
|
|
|
// Clear previous state ...
|
2012-05-23 20:05:16 -03:00
|
|
|
$("#" + containerId).find('.errorMessage').text("").removeClass("alert alert-error");
|
|
|
|
$("#" + containerId).find('.control-group').removeClass('error');
|
2012-05-19 21:36:34 -03:00
|
|
|
|
2012-05-23 20:05:16 -03:00
|
|
|
// Clear form values ...
|
|
|
|
if (options.clearForm == undefined || options.clearForm) {
|
|
|
|
$("#" + containerId).find('input').attr('value', '');
|
|
|
|
}
|
2012-04-07 20:05:50 -03:00
|
|
|
|
2012-05-23 21:54:03 -03:00
|
|
|
// Clear button "Saving..." state ...
|
2012-05-19 00:13:06 -03:00
|
|
|
var acceptBtn = $('#' + containerId + ' .btn-accept');
|
2012-05-23 20:05:16 -03:00
|
|
|
acceptBtn.button('reset');
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
acceptBtn.click(function () {
|
2012-04-07 20:05:50 -03:00
|
|
|
var formData = {};
|
2012-08-15 21:05:44 -03:00
|
|
|
$('#' + containerId + ' input').each(function (index, elem) {
|
2012-04-07 20:05:50 -03:00
|
|
|
formData[elem.name] = elem.value;
|
|
|
|
});
|
2012-05-23 20:05:16 -03:00
|
|
|
$(acceptBtn).button('loading');
|
2012-05-23 01:13:00 -03:00
|
|
|
var dialogElem = this;
|
2012-04-07 20:05:50 -03:00
|
|
|
jQuery.ajax(url, {
|
|
|
|
async:false,
|
2012-08-15 21:05:44 -03:00
|
|
|
dataType:'json',
|
|
|
|
data:JSON.stringify(formData),
|
|
|
|
type:options.type ? options.type : 'POST',
|
2012-04-07 20:05:50 -03:00
|
|
|
contentType:"application/json; charset=utf-8",
|
2012-08-15 21:05:44 -03:00
|
|
|
success:function (data, textStatus, jqXHR) {
|
2012-04-07 20:05:50 -03:00
|
|
|
if (options.redirect) {
|
2012-04-15 06:59:32 -03:00
|
|
|
var resourceId = jqXHR.getResponseHeader("ResourceId");
|
|
|
|
var redirectUrl = options.redirect;
|
|
|
|
redirectUrl = redirectUrl.replace("{header.resourceId}", resourceId);
|
2012-08-15 21:05:44 -03:00
|
|
|
|
|
|
|
// Hack: IE ignore the base href tag ...
|
|
|
|
var baseUrl = window.location.href.substring(0, window.location.href.lastIndexOf("c/maps/"));
|
|
|
|
window.open(baseUrl + redirectUrl, '_self');
|
2012-04-15 06:59:32 -03:00
|
|
|
|
2012-04-07 20:05:50 -03:00
|
|
|
} else if (options.postUpdate) {
|
|
|
|
options.postUpdate(formData);
|
|
|
|
}
|
2012-05-23 01:13:00 -03:00
|
|
|
dialogElem.modal('hide');
|
2012-04-07 20:05:50 -03:00
|
|
|
},
|
2012-08-15 21:05:44 -03:00
|
|
|
error:function (jqXHR, textStatus, errorThrown) {
|
2012-04-07 20:05:50 -03:00
|
|
|
if (jqXHR.status == 400) {
|
|
|
|
var errors = JSON.parse(jqXHR.responseText);
|
|
|
|
// Mark fields with errors ...
|
|
|
|
var fieldErrors = errors.fieldErrors;
|
|
|
|
if (fieldErrors) {
|
|
|
|
for (var fieldName in fieldErrors) {
|
2012-05-23 21:54:03 -03:00
|
|
|
// Mark the field with errors ...
|
2012-04-07 20:05:50 -03:00
|
|
|
var message = fieldErrors[fieldName];
|
|
|
|
var inputField = $("#" + containerId + " input[name='" + fieldName + "']");
|
2012-05-19 21:36:34 -03:00
|
|
|
|
2012-05-23 20:05:16 -03:00
|
|
|
$("#" + containerId).find(".errorMessage").text(message).addClass("alert alert-error");
|
2012-05-19 21:36:34 -03:00
|
|
|
inputField.parent().addClass('error');
|
2012-04-07 20:05:50 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2012-05-23 20:05:16 -03:00
|
|
|
console.log(errorThrown);
|
|
|
|
console.log(jqXHR);
|
|
|
|
dialogElem.modal('hide');
|
2012-09-10 23:51:53 -03:00
|
|
|
$('#messagesPanel div div').text(errorThrown);
|
|
|
|
$('#messagesPanel').show()
|
2012-04-07 20:05:50 -03:00
|
|
|
}
|
2012-06-06 00:48:46 -03:00
|
|
|
var acceptBtn = $('#' + containerId + ' .btn-accept');
|
|
|
|
acceptBtn.button('reset');
|
2012-04-07 20:05:50 -03:00
|
|
|
|
|
|
|
}
|
|
|
|
});
|
2012-05-16 01:36:02 -03:00
|
|
|
}.bind(this));
|
2012-04-07 20:05:50 -03:00
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$('#' + containerId + ' .btn-cancel').click(function () {
|
2012-05-16 01:36:02 -03:00
|
|
|
this.modal('hide');
|
|
|
|
}.bind(this));
|
2012-04-07 20:05:50 -03:00
|
|
|
|
|
|
|
// Open the modal dialog ...
|
2012-05-23 01:13:00 -03:00
|
|
|
this.modal();
|
2012-04-07 20:05:50 -03:00
|
|
|
|
|
|
|
};
|
2012-05-13 18:28:00 -03:00
|
|
|
|
|
|
|
|
|
|
|
// Update toolbar events ...
|
2012-05-29 22:36:32 -03:00
|
|
|
function updateStatusToolbar() {
|
2012-05-20 02:25:54 -03:00
|
|
|
|
2012-05-20 21:46:55 -03:00
|
|
|
// Mark column row selection values ...
|
2012-05-20 02:25:54 -03:00
|
|
|
$("#mindmapListTable tbody input:checked").parent().parent().addClass('row-selected');
|
|
|
|
$("#mindmapListTable tbody input:not(:checked)").parent().parent().removeClass('row-selected');
|
|
|
|
|
2012-09-10 23:51:53 -03:00
|
|
|
$('.buttonsToolbar').find('.act-single').hide().end().find('.act-multiple').hide();
|
2012-05-16 01:36:02 -03:00
|
|
|
|
2012-05-20 21:46:55 -03:00
|
|
|
var tableElem = $('#mindmapListTable');
|
|
|
|
var selectedRows = tableElem.dataTableExt.getSelectedRows();
|
2012-05-20 14:54:35 -03:00
|
|
|
|
2012-05-20 21:46:55 -03:00
|
|
|
if (selectedRows.length > 0) {
|
|
|
|
if (selectedRows.length == 1) {
|
2012-09-10 23:51:53 -03:00
|
|
|
$('.buttonsToolbar').find('.act-single').show().end().find('.act-multiple').show();
|
2012-05-20 21:46:55 -03:00
|
|
|
|
|
|
|
// Can be executed by the owner ?
|
|
|
|
var rowData = tableElem.dataTable().fnGetData(selectedRows[0]);
|
2012-09-18 20:46:04 -03:00
|
|
|
if ('owner' == rowData.role) {
|
|
|
|
$(".buttonsToolbar").find('#publishBtn').show().end().find('#shareBtn').show().end().find('#renameBtn').show();
|
|
|
|
} else {
|
2012-09-10 23:51:53 -03:00
|
|
|
$(".buttonsToolbar").find('#publishBtn').hide().end().find('#shareBtn').hide().end().find('#renameBtn').hide();
|
2012-05-20 21:46:55 -03:00
|
|
|
}
|
2012-05-20 14:54:35 -03:00
|
|
|
} else {
|
2012-09-10 23:51:53 -03:00
|
|
|
$(".buttonsToolbar .act-multiple").show();
|
2012-05-20 14:54:35 -03:00
|
|
|
}
|
2012-05-13 18:28:00 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-29 22:36:32 -03:00
|
|
|
// Update toolbar events ...
|
|
|
|
function updateStarred(spanElem) {
|
|
|
|
$(spanElem).removeClass('starredOff');
|
|
|
|
$(spanElem).addClass('starredOn');
|
|
|
|
|
|
|
|
// Retrieve row data ...
|
|
|
|
var tableElem = $('#mindmapListTable');
|
|
|
|
var trElem = $(spanElem).parent().parent();
|
|
|
|
var rowData = tableElem.dataTable().fnGetData(trElem[0]);
|
|
|
|
|
|
|
|
// Update status ...
|
|
|
|
var starred = !rowData.starred;
|
|
|
|
var mapId = rowData.id;
|
|
|
|
if (starred) {
|
|
|
|
$(spanElem).removeClass('starredOff');
|
|
|
|
$(spanElem).addClass('starredOn');
|
|
|
|
} else {
|
|
|
|
$(spanElem).removeClass('starredOn');
|
|
|
|
$(spanElem).addClass('starredOff');
|
|
|
|
}
|
|
|
|
|
2012-11-10 17:19:28 -03:00
|
|
|
jQuery.ajax("c/restful/maps/" + mapId + "/starred", {
|
2012-05-29 22:36:32 -03:00
|
|
|
async:false,
|
2012-08-15 21:05:44 -03:00
|
|
|
dataType:'json',
|
|
|
|
data:"" + starred,
|
|
|
|
type:'PUT',
|
2012-05-29 22:36:32 -03:00
|
|
|
contentType:"text/plain",
|
2012-08-15 21:05:44 -03:00
|
|
|
success:function () {
|
2012-05-29 22:36:32 -03:00
|
|
|
if (starred) {
|
|
|
|
$(spanElem).removeClass('starredOff');
|
|
|
|
$(spanElem).addClass('starredOn');
|
|
|
|
} else {
|
|
|
|
$(spanElem).removeClass('starredOn');
|
|
|
|
$(spanElem).addClass('starredOff');
|
|
|
|
}
|
|
|
|
},
|
2012-08-15 21:05:44 -03:00
|
|
|
error:function (jqXHR, textStatus, errorThrown) {
|
2012-05-29 22:36:32 -03:00
|
|
|
$('#messagesPanel div').text(errorThrown).parent().show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Finally update st
|
|
|
|
rowData.starred = starred;
|
|
|
|
}
|
|
|
|
|
2012-05-29 22:56:14 -03:00
|
|
|
function callbackOnTableInit() {
|
|
|
|
// Register starred events ...
|
2012-08-15 21:05:44 -03:00
|
|
|
$('#mindmapListTable .starredOff, #mindmapListTable .starredOn').click(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
updateStarred(this);
|
|
|
|
});
|
2012-06-06 01:42:24 -03:00
|
|
|
updateStatusToolbar();
|
2012-05-29 22:56:14 -03:00
|
|
|
}
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
// Creation buttons actions ...
|
|
|
|
$("#newBtn").click(
|
2012-08-15 21:05:44 -03:00
|
|
|
function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
$("#new-dialog-modal").dialogForm({
|
2012-08-15 21:05:44 -03:00
|
|
|
redirect:"c/maps/{header.resourceId}/edit",
|
2012-11-10 17:19:28 -03:00
|
|
|
url:"c/restful/maps"
|
2012-05-29 22:56:14 -03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#duplicateBtn").click(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
// Map to be cloned ...
|
|
|
|
var tableElem = $('#mindmapListTable');
|
|
|
|
var rows = tableElem.dataTableExt.getSelectedRows();
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
|
|
|
// Obtain map name ...
|
|
|
|
var rowData = tableElem.dataTable().fnGetData(rows[0]);
|
|
|
|
$('#dupDialogTitle').text("Duplicate '" + rowData.title + "'");
|
|
|
|
|
|
|
|
// Obtains map id ...
|
|
|
|
var mapId = rowData.id;
|
|
|
|
|
|
|
|
// Initialize dialog ...
|
|
|
|
$("#duplicate-dialog-modal").dialogForm({
|
2012-08-15 21:05:44 -03:00
|
|
|
redirect:"c/maps/{header.resourceId}/edit",
|
2012-11-10 17:19:28 -03:00
|
|
|
url:"c/restful/maps/" + mapId
|
2012-05-29 22:56:14 -03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#renameBtn").click(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
// Map to be cloned ...
|
|
|
|
var tableElem = $('#mindmapListTable');
|
|
|
|
var rows = tableElem.dataTableExt.getSelectedRows();
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
|
|
|
// Obtain map name ...
|
|
|
|
var dataTable = tableElem.dataTable();
|
|
|
|
var rowData = dataTable.fnGetData(rows[0]);
|
|
|
|
|
|
|
|
// Fill dialog with default values ...
|
|
|
|
var mapId = rowData.id;
|
|
|
|
$("#rename-dialog-modal input[name='title']").attr('value', rowData.title);
|
|
|
|
$("#rename-dialog-modal input[name='description']").attr('value', rowData.description);
|
|
|
|
|
|
|
|
// Set title ...
|
|
|
|
$('#renameDialogTitle').text("Rename '" + rowData.title + "'");
|
|
|
|
|
|
|
|
// Initialize dialog ...
|
|
|
|
$("#rename-dialog-modal").dialogForm({
|
2012-08-15 21:05:44 -03:00
|
|
|
type:'PUT',
|
|
|
|
clearForm:false,
|
|
|
|
postUpdate:function (reqBodyData) {
|
2012-05-29 22:56:14 -03:00
|
|
|
tableElem.dataTableExt.removeSelectedRows();
|
|
|
|
|
|
|
|
rowData.title = reqBodyData.title;
|
|
|
|
rowData.description = reqBodyData.description;
|
|
|
|
dataTable.fnAddData(JSON.parse(JSON.stringify(rowData)));
|
|
|
|
},
|
2012-11-10 17:19:28 -03:00
|
|
|
url:"c/restful/maps/" + mapId
|
2012-05-29 22:56:14 -03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#deleteBtn").click(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
var tableUI = $('#mindmapListTable');
|
|
|
|
|
|
|
|
var mapIds = tableUI.dataTableExt.getSelectedMapsIds();
|
2012-06-03 11:16:38 -03:00
|
|
|
|
2012-05-29 22:56:14 -03:00
|
|
|
if (mapIds.length > 0) {
|
|
|
|
// Initialize dialog ...
|
|
|
|
$("#delete-dialog-modal").dialogForm({
|
2012-08-15 21:05:44 -03:00
|
|
|
type:'DELETE',
|
|
|
|
postUpdate:function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
// Remove old entry ...
|
|
|
|
tableUI.dataTableExt.removeSelectedRows();
|
|
|
|
},
|
2012-11-10 17:19:28 -03:00
|
|
|
url:"c/restful/maps/batch?ids=" + jQuery.makeArray(mapIds).join(',')
|
2012-05-29 22:56:14 -03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#printBtn").click(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
var mapIds = $('#mindmapListTable').dataTableExt.getSelectedMapsIds();
|
|
|
|
if (mapIds.length > 0) {
|
2012-08-15 21:05:44 -03:00
|
|
|
// Hack: IE ignore the base href tag ...
|
|
|
|
var baseUrl = window.location.href.substring(0, window.location.href.lastIndexOf("c/maps/"));
|
|
|
|
window.open(baseUrl + 'c/maps/' + mapIds[0] + '/print');
|
2012-05-29 22:56:14 -03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#infoBtn").click(function () {
|
2012-07-01 22:34:01 -03:00
|
|
|
showEmbeddedDialog("c/maps/{mapId}/details", 'info-dialog-modal');
|
2012-05-29 22:56:14 -03:00
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#historyBtn").click(function () {
|
2012-07-01 22:34:01 -03:00
|
|
|
showEmbeddedDialog("c/maps/{mapId}/history", 'history-dialog-modal');
|
2012-06-17 02:51:01 -03:00
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#publishBtn").click(function () {
|
2012-07-01 22:34:01 -03:00
|
|
|
showEmbeddedDialog("c/maps/{mapId}/publish", "publish-dialog-modal");
|
2012-06-06 00:48:46 -03:00
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#exportBtn").click(function () {
|
2012-07-01 22:34:01 -03:00
|
|
|
showEmbeddedDialog("c/maps/{mapId}/export", 'export-dialog-modal');
|
2012-06-06 00:48:46 -03:00
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#importBtn").click(function () {
|
2012-07-01 22:34:01 -03:00
|
|
|
showEmbeddedDialog("c/maps/import", 'import-dialog-modal', true);
|
2012-06-06 00:48:46 -03:00
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$("#shareBtn").click(function () {
|
2012-07-01 22:34:01 -03:00
|
|
|
showEmbeddedDialog("c/maps/{mapId}/share", 'share-dialog-modal', true);
|
2012-06-07 19:45:22 -03:00
|
|
|
});
|
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
var showEmbeddedDialog = function (urlTemplate, dialogElemId, ignore) {
|
2012-05-29 22:56:14 -03:00
|
|
|
var mapIds = $('#mindmapListTable').dataTableExt.getSelectedMapsIds();
|
2012-06-06 00:48:46 -03:00
|
|
|
if (mapIds.length > 0 || ignore) {
|
|
|
|
var mapId = mapIds[0];
|
|
|
|
$('#' + dialogElemId + ' .modal-body').load(urlTemplate.replace("{mapId}", mapId),
|
2012-08-15 21:05:44 -03:00
|
|
|
function () {
|
|
|
|
$('#' + dialogElemId + ' .btn-accept').unbind('click').click(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
submitDialogForm();
|
|
|
|
});
|
2012-06-06 00:48:46 -03:00
|
|
|
$('#' + dialogElemId).modal();
|
2012-05-29 22:56:14 -03:00
|
|
|
});
|
|
|
|
}
|
2012-06-06 00:48:46 -03:00
|
|
|
};
|
2012-05-29 22:56:14 -03:00
|
|
|
|
2012-08-15 21:05:44 -03:00
|
|
|
$('#foldersContainer li').click(function (event) {
|
2012-05-29 22:56:14 -03:00
|
|
|
// Deselect previous option ...
|
|
|
|
$('#foldersContainer li').removeClass('active');
|
|
|
|
$('#foldersContainer i').removeClass('icon-white');
|
|
|
|
|
|
|
|
// Select the new item ...
|
|
|
|
var dataTable = $('#mindmapListTable').dataTable();
|
|
|
|
$(this).addClass('active');
|
|
|
|
$('#foldersContainer .active i').addClass('icon-white');
|
|
|
|
|
|
|
|
// Reload the table data ...
|
2012-11-10 17:19:28 -03:00
|
|
|
dataTable.fnReloadAjax("c/restful/maps/?q=" + $(this).attr('data-filter'), callbackOnTableInit, true);
|
2012-05-29 22:56:14 -03:00
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Register time update functions ....
|
2012-08-15 21:05:44 -03:00
|
|
|
setTimeout(function () {
|
2012-05-29 22:56:14 -03:00
|
|
|
jQuery("abbr.timeago").timeago()
|
|
|
|
}, 50000);
|
2012-05-29 22:36:32 -03:00
|
|
|
|
|
|
|
|
2012-05-13 18:28:00 -03:00
|
|
|
|