Changes between Version 7 and Version 8 of phpgwapi/expressoAjax


Ignore:
Timestamp:
04/29/10 07:44:40 (14 years ago)
Author:
amuller
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • phpgwapi/expressoAjax

    v7 v8  
    5454 
    5555== Funções == 
     56Estas funções são providas para os scripts client-side de todos os módulos 
    5657{{{ 
    5758borkb(size) 
     
    117118Sem saída 
    118119 
    119 function remove_className(obj, className) 
     120remove_className(obj, className) 
     121Atribui remove classe de objeto 
     122Entrada: Objeto, String 
     123Sem saída 
    120124 
    121 function exist_className(obj, className) 
     125exist_className(obj, className) 
     126Verifica classe de objeto 
     127Entrada: Objeto, String 
     128Saída: Boolean 
    122129 
    123 function validate_date(date) 
     130validate_date(date) 
     131Valida data no formato DD/MM/AAAA 
     132Entrada: String 
     133Saída: Boolean 
    124134 
    125 function get_lang(_key) 
     135get_lang(_key) 
     136Retorna a frase traduzida para _key 
     137Entrada: String 
     138Saída: String 
    126139 
    127 function showBar() 
     140hideBar() 
     141Esconde barra dos módulos 
     142Sem entrada, sem saída 
    128143 
    129 function hideBar() 
     144showBar() 
     145Mostra barra dos módulos 
     146Sem entrada, sem saída 
    130147 
    131 function changeBar() 
     148changeBar() 
     149Troca estado da barra dos módulos (show, hide) 
     150Sem entrada, sem saída 
    132151 
    133 function initBar(val) 
     152zoom_in(id) 
     153Faz efeito de zoom em imagem com id 
     154Entrada: String 
     155Sem saída 
    134156 
    135 function zoom_in(id) 
    136  
    137 function zoom_out(id) 
     157zoom_out(id) 
     158Tira efeito de zoom em imagem com id 
     159Entrada: String 
     160Sem saída 
    138161}}}