Posted by Benoitt76 on février 10th, 2010
Créer un bouton de redirection avec JQuery
<input type="button" name="modifier" id="buttonModifier" value="Modifier"/>
<script type="text/javascript">
<!--
jQuery(function($){
$("#buttonModifier").click(function() {
window.location.href = "/espaceadherent/";
});
});
//-->
</script>
Posted by Benoitt76 on février 4th, 2010
Voici comment Manipuler une checkbox avec JQuery
Notre Checkbox :
<input type="checkbox" name="Cocher" value="bar" id="myCheckbox" />
Read the rest of this entry »
Posted by Benoitt76 on février 4th, 2010
Date courante :
$dateTime = new Zend_Date();
Récupérer simplement la date :
$date = $dateTime->get(Zend_Date::DATES);
Read the rest of this entry »
Posted by Benoitt76 on février 3rd, 2010
Les différentes possibilités possible sur une Select Box avec JQuery
Read the rest of this entry »
Posted by Benoitt76 on février 2nd, 2010
Conditions :
Zend_Form_Element_Select alimenté en ajax.
Probléme :
La select box renvoie la bonne valeur, mais le validateur refuse de valider le formulaire car il ne connais pas les valeur.
Read the rest of this entry »
Recent Comments