popup for label

This commit is contained in:
Ezequiel Bergamaschi
2014-01-21 01:42:00 -03:00
committed by Ezequiel Bergamaschi
parent 8bdc5f6b05
commit f4fb008f1b
3 changed files with 63 additions and 8 deletions

View File

@@ -252,12 +252,15 @@ $(function () {
redirect:"c/maps/{header.resourceId}/edit",
url:"c/restful/maps"
});
});
}
);
//Eze todo hoy esta creando un dialog de mapa
$("#newFolderBtn").click(
function() {
window.alert('falta crear el dialog de folder')
function () {
$("#new-folder-dialog-modal").dialogForm({
//redirect:"c/maps/{header.resourceId}/edit",
//url:"c/restful/maps"
});
}
);
@@ -395,6 +398,16 @@ $(function () {
dataTable.fnReloadAjax("c/restful/maps/?q=" + $(this).attr('data-filter'), callbackOnTableInit, true);
event.preventDefault();
});
$("#parentLblCheckbox").click(
function () {
if ($(this).is(":checked")) {
$("#dropdownLabel").prop("disabled", false);
} else {
$("#dropdownLabel").prop("disabled", true);
}
}
)
});
// Register time update functions ....