git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C310
This commit is contained in:
parent
09f58d0b40
commit
a674c8cd6a
1 changed files with 11 additions and 3 deletions
|
|
@ -14,8 +14,12 @@ jQuery(document).ready(function () {
|
||||||
getDataModel();
|
getDataModel();
|
||||||
|
|
||||||
$('#tableDocFichaTecnica').TableInit(0, false, false, false, false, null, null);
|
$('#tableDocFichaTecnica').TableInit(0, false, false, false, false, null, null);
|
||||||
//$('#tableDocFichaTecnica').DataTable().column(0).visible(false);
|
$('#tableDocFichaTecnica').DataTable().column(0).visible(false);
|
||||||
//$('#tableDocFichaTecnica').DataTable().column(4).visible(false);
|
$('#tableDocFichaTecnica').DataTable().column(4).visible(false);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.getDataModel = function () {
|
this.getDataModel = function () {
|
||||||
|
|
@ -197,6 +201,8 @@ this.getDataModel = function () {
|
||||||
|
|
||||||
$('#tablePalabraClave').TableInit(0, false, true, true, false, null, null);
|
$('#tablePalabraClave').TableInit(0, false, true, true, false, null, null);
|
||||||
$("#txtFechaPublicacionDocumentoTecnico").datepicker();
|
$("#txtFechaPublicacionDocumentoTecnico").datepicker();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -737,7 +743,9 @@ this.AgregarPalabraClave = function () {
|
||||||
if (!confirm("¿Desea agregar otra palabra clave?")) return;
|
if (!confirm("¿Desea agregar otra palabra clave?")) return;
|
||||||
|
|
||||||
var tablePalabrasClaves = $('#tablePalabraClave').DataTable();
|
var tablePalabrasClaves = $('#tablePalabraClave').DataTable();
|
||||||
|
|
||||||
var option = $("#ucItemsEliminar").html();
|
var option = $("#ucItemsEliminar").html();
|
||||||
|
|
||||||
var a = $("#hiddenPalabraClave").val();
|
var a = $("#hiddenPalabraClave").val();
|
||||||
|
|
||||||
tablePalabrasClaves.row.add(
|
tablePalabrasClaves.row.add(
|
||||||
|
|
@ -745,7 +753,7 @@ this.AgregarPalabraClave = function () {
|
||||||
$("#txtPalabraClave").val(),
|
$("#txtPalabraClave").val(),
|
||||||
option])
|
option])
|
||||||
.draw();
|
.draw();
|
||||||
|
|
||||||
toastr.success(Message_Default, Message_Success);
|
toastr.success(Message_Default, Message_Success);
|
||||||
$('#hiddenPalabraClave').val('');
|
$('#hiddenPalabraClave').val('');
|
||||||
$('#txtPalabraClave').val('');
|
$('#txtPalabraClave').val('');
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue