Tabelle Espressomaschinen: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 17: | Zeile 17: | ||
|- | |- | ||
|} | |} | ||
| + | |||
| + | |||
| + | |||
| + | KlappTabelle.marker = '/js/bilder/pfeil-zu.gif'; | ||
| + | KlappTabelle.init(setEvents); | ||
| + | |||
| + | // Das ist die Callback Funktion die aufgerufen wird, | ||
| + | // wenn eine Klapptabelle gefunden wird | ||
| + | function setEvents(klapptabelle){ | ||
| + | |||
| + | // Event für den Button <alle Schliessen> | ||
| + | document.getElementById('closeAll').onclick = function() { | ||
| + | klapptabelle.hideAll(); | ||
| + | }; | ||
| + | // Event für den Button <alle öffnen> | ||
| + | document.getElementById('showAll').onclick = function() { klapptabelle.showAll();}; | ||
| + | |||
| + | klapptabelle.onopen = function(p, row) { | ||
| + | this.doCloseAll = document.getElementById('close').checked; | ||
| + | row.style.background ='#ff0' | ||
| + | }; | ||
| + | klapptabelle.onclose = function(p, row){ | ||
| + | row.style.background ='' | ||
| + | }; | ||
| + | } | ||
Version vom 21. Februar 2013, 11:48 Uhr
Übersicht über die Kategorien
| Title | Hersteller | Maschine | Maße class ="wikitable sortable mw-collapsible" | Preis | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Hersteller | Maschine | Maße | Preis |
KlappTabelle.marker = '/js/bilder/pfeil-zu.gif'; KlappTabelle.init(setEvents); // Das ist die Callback Funktion die aufgerufen wird, // wenn eine Klapptabelle gefunden wird function setEvents(klapptabelle){ // Event für den Button <alle Schliessen> document.getElementById('closeAll').onclick = function() { klapptabelle.hideAll(); }; // Event für den Button <alle öffnen> document.getElementById('showAll').onclick = function() { klapptabelle.showAll();}; klapptabelle.onopen = function(p, row) { this.doCloseAll = document.getElementById('close').checked; row.style.background ='#ff0' }; klapptabelle.onclose = function(p, row){ row.style.background = }; } |
||||||||