Aus BogenWiki
|
|
%%Sample.ID%% (%%Sample.IDSrc%%)
|
Kat-Nr.: |
%%Stamp.KatNr%%%%Sample.KatNrVar%% |
BRS: |
%%Sample.BRS.Text%% |
Quelle: |
%%Sample.Source.Type.Text%% |
Name: |
%%Sample.Source.Name%% |
%%Sample.Source.ArtNr.Title%%: |
%%Sample.Source.ArtNr%% |
Datum: |
%%Sample.Source.Date%% |
%%Sample.Source.PrType.Text%%: |
%%Sample.Source.Price%% |
Größe: |
%%Sample.ImageData.Width%% x
%%Sample.ImageData.Height%%
|
|
|
KatNr |
ID |
BRS |
Quelle |
%%Stamp.KatNr%%%%Sample.KatNrVar%% |
%%Sample.ID%% |
%%Sample.BRS.Text%% |
%%Sample.Source.Type%% %%Sample.Source.Name%% %%Sample.Source.ArtNr%% |
Keine Ausschnitte vorhanden |
Gebiet |
Gebiet1 |
KatNr |
Anzahl |
... |
%%Statistic.Gebiet%% |
%%Statistic.Gebiet1%% |
%%Statistic.KatNr%% |
%%Statistic.Count%% |
|
Keine Ausschnitte vorhanden |
Summe: |
%%Statistic.Total%% |
|
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;
}
}