Persönliche Werkzeuge

Test Musterbogen

Aus BogenWiki

Wechseln zu: Navigation, Suche

Tests
MB-Types
  
Test 2
function MGF_MB_OnClick(eElement) { console.log('[MGF_MB_OnClick] eElement.id='+eElement.id); var sElementID = eElement.id; switch (sElementID) { case 'BGF.MB.TestMBTypes': break; } } sActiveBgColor = '#A0A0A0'; sActiveCaColor = 'white'; sInactiveBgColor = '#E0E0E0'; sInactiveCaColor = 'black'; sHoverBgColor = '#D0D0D0'; sHoverCaColor = 'black'; function BtnPageEvent(sID,sEvent) { eButton = document.getElementById(sID); switch (sEvent) { case 'onmouseenter': //console.log(sID,aActiveBtnID[0],aActiveBtnID[1]); eButton.style.background=sHoverBgColor; eButton.style.color=sHoverCaColor; break; case 'onmouseleave': eButton.style.background=sInactiveBgColor; eButton.style.color=sInactiveCaColor; break; case 'onclick': MGF_MB_OnClick(eButton); break; case 'onload': eButton.style.background=sInactiveBgColor; eButton.style.color=sInactiveCaColor; break; } }