1 line
2.8 KiB
JavaScript
Executable File
1 line
2.8 KiB
JavaScript
Executable File
// -----------------------------------------------------
|
|
// popup produit
|
|
// -----------------------------------------------------
|
|
function openPU( adresse, titre ) {
|
|
var width=800;
|
|
var height=800;
|
|
var left=(screen.availWidth - width )/2;
|
|
var top=(screen.availHeight - height )/2;
|
|
// alert('adre='+adresse);
|
|
// alert('titre='+titre);
|
|
window.open( adresse, titre, 'width=' + width + ', height=' + height + ', top=' + top + ', left=' + left + ', location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes');
|
|
}
|
|
|
|
// ------------------------------------------------------
|
|
// Masquer le menu gauche en responsive
|
|
// ------------------------------------------------------
|
|
function jsResize() {
|
|
const leftFrame = document.getElementById("leftFrameAdmin");
|
|
const resizeIcon = document.getElementById("resize");
|
|
|
|
// Utiliser getComputedStyle pour lire la valeur réelle du display
|
|
const currentDisplay = window.getComputedStyle(leftFrame).display;
|
|
// alert('leftFrameAdmin.display = ' + currentDisplay);
|
|
|
|
if (currentDisplay !== "block") {
|
|
leftFrame.style.display = "block";
|
|
resizeIcon.className = "fad fa-arrow-circle-left";
|
|
} else {
|
|
leftFrame.style.display = "none";
|
|
resizeIcon.className = "fad fa-arrow-circle-right";
|
|
}
|
|
}
|
|
|
|
function admMsgClear(){
|
|
// alert('admMsgClear : effacer anciens messages utiliateur');
|
|
if (document.getElementById('zoneMsgWbmKo')) {document.getElementById('zoneMsgWbmKo').innerHTML=" ";}
|
|
if (document.getElementById('zoneMsgWbmOk')) {document.getElementById('zoneMsgWbmOk').innerHTML=" ";}
|
|
}
|
|
|
|
// -----------------------------------------------
|
|
// Popup aide
|
|
// ---------------------------------------------------
|
|
function openPopup(c) {
|
|
// alert('open'+c);
|
|
if (document.getElementById("zoneRechercheWbm")) document.getElementById("zoneRechercheWbm").style.zIndex = "14";
|
|
if (document.getElementById("bandeauAideInfo")) document.getElementById("bandeauAideInfo").style.zIndex = "14";
|
|
if (document.getElementById("zoneMenuWbm")) document.getElementById("zoneMenuWbm").style.zIndex = "14";
|
|
// if (document.getElementById("zoneFormWbm")) document.getElementById("zoneFormWbm").style.zIndex = "14";
|
|
document.getElementById("popupInfo"+c).style.zIndex = "20";
|
|
document.getElementById("popupInfo"+c).style.display = "block";
|
|
}
|
|
function closePopup(c) {
|
|
if (document.getElementById("zoneRechercheWbm")) document.getElementById("zoneRechercheWbm").style.zIndex = "12";
|
|
if (document.getElementById("bandeauAideInfo")) document.getElementById("bandeauAideInfo").style.zIndex = "10";
|
|
if (document.getElementById("zoneMenuWbm")) document.getElementById("zoneMenuWbm").style.zIndex = "12";
|
|
if (document.getElementById("zoneFormWbm")) document.getElementById("zoneFormWbm").style.zIndex = "6";
|
|
document.getElementById("popupInfo"+c).style.zIndex = "10";
|
|
document.getElementById("popupInfo"+c).style.display = "none";
|
|
}
|