blob: 94f7c9e4fb590a84295937fc0ec3f3b655549fdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
// *************************************************************************************************************************************************
// Libreria de scripts de Javascript
// Autor: Jos� Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creaci�n: 2009-2010
// Fecha �ltima modificaci�n: Noviembre-2005
// Nombre del fichero: L_Iconos.js
// Descripci�n :
// Este fichero implementa las funciones javascript del fichero L_Iconos.php
// *************************************************************************************************************************************************
// Opciones
var Menu=0;
var Insertar=1;
var Eliminar=2;
var Modificar=3;
var Consultar=4;
// Acciones
var Sin_accion=0;
var Insertar_registro=1;
var Borrar_registro=2;
var Modificar_registro=3;
var Leer_registro=4;
var currentImg=null;
var IE=(navigator.appName=="Microsoft Internet Explorer");
var NS=(navigator.appName=="Netscape");
//-----------------------------------------------------------------------------------------------------
function consultar(){
reset_contextual(-1,-1);
id=document.fdatos.identificador.value;
var whref;
whref="M_Iconos.php";
whref=whref + "?opcion=" + Consultar;
whref=whref + "&accion=" + Leer_registro;
whref=whref + "&idicono=" + id;
window.open(whref,"frame_contenidos")
}
//-----------------------------------------------------------------------------------------------------
function borrar(){
reset_contextual(-1,-1);
id=document.fdatos.identificador.value;
var whref;
whref="M_Iconos.php";
whref=whref + "?opcion=" + Eliminar;
whref=whref + "&accion=" + Leer_registro;
whref=whref + "&idicono=" + id;
window.open(whref,"frame_contenidos")
}
//-----------------------------------------------------------------------------------------------------
function modificar(){
reset_contextual(-1,-1);
id=document.fdatos.identificador.value;
var whref;
whref="M_Iconos.php";
whref=whref + "?opcion=" + Modificar;
whref=whref + "&accion=" + Leer_registro;
whref=whref + "&idicono=" + id;
window.open(whref,"frame_contenidos")
}
//_____________________________________________________________________________________
//
function menu_contextual(o){
document.fdatos.identificador.value=o.getAttribute("id");
if (currentImg!=null)
currentImg.src="../images/iconos/administrar_off.gif";
o.src="../images/iconos/administrar_on.gif";
currentImg=o;
var menuctx=document.getElementById("flo_menu");
muestra_contextual(ClickX,ClickY,menuctx);
}
//____________________________________________________________________________
//
// Se ejecuta cada vez que se hace click con el puntero del rat�n. Se usa para desmarca
// cualquier item de menu contextual que estuviese activo
//____________________________________________________________________________
function click_de_raton(e){
if(IE){
botonraton=event.button;
event.returnValue=true;
}
if(NS){
botonraton=e.which;
e.returnValue=true;
}
}
//____________________________________________________________________________
//
// Se ejecuta cada vez que se mueve el puntero del rat�n. Se usa para capturar coordenadas
//____________________________________________________________________________
function move_de_raton(e){
if(IE){
ClickX=event.clientX;
ClickY=event.clientY;
event.returnValue=true;
}
if(NS){
ClickX=e.clientX;
ClickY=e.clientY;
e.returnValue=true;
}
}
//____________________________________________________________________________
//
// Redirecciona el evento onmousedown a la funci�n de usuario especificada.
//____________________________________________________________________________
document.onmousedown = click_de_raton; // Redefine el evento onmousedown
document.onmousemove = move_de_raton; // Redefine el evento onmousedown
|