java/HrisniciSpameri/web/funkce.js
author František Kučera <franta-hg@frantovo.cz>
Sun, 01 Mar 2009 18:29:44 +0100
changeset 43 22cc28d200f3
parent 20 90dc76051e56
permissions -rw-r--r--
Přidání tlačítka pro rozbalení a sbalení tabulky.
franta-hg@20
     1
function zobrazNeboSkryj(idElementu)
franta-hg@20
     2
{
franta-hg@20
     3
    prvek = document.getElementById(idElementu);
franta-hg@20
     4
franta-hg@20
     5
    if (prvek.style.display == "none" || prvek.style.display == "")
franta-hg@20
     6
    {
franta-hg@20
     7
        prvek.style.display = "block";
franta-hg@20
     8
    }
franta-hg@20
     9
    else
franta-hg@20
    10
    {
franta-hg@20
    11
        prvek.style.display = "none";
franta-hg@20
    12
    }
franta-hg@20
    13
}
franta-hg@43
    14
franta-hg@43
    15
function rozbalNeboZabal(idElementu, vyska, idTlacitka, textZabalit, textRozbalit)
franta-hg@43
    16
{
franta-hg@43
    17
    prvek = document.getElementById(idElementu);
franta-hg@43
    18
    tlacitko = document.getElementById(idTlacitka);
franta-hg@43
    19
franta-hg@43
    20
    if (prvek.style.maxHeight == "" || prvek.style.maxHeight == vyska)
franta-hg@43
    21
    {
franta-hg@43
    22
        prvek.style.maxHeight = "1000000px";
franta-hg@43
    23
        tlacitko.innerHTML = textZabalit;
franta-hg@43
    24
    }
franta-hg@43
    25
    else
franta-hg@43
    26
    {
franta-hg@43
    27
        prvek.style.maxHeight = vyska;
franta-hg@43
    28
        tlacitko.innerHTML = textRozbalit;
franta-hg@43
    29
    }
franta-hg@43
    30
}