simontabor / jquery-toggles

jQuery plugin to make easy toggle buttons
http://simontabor.com/labs/toggles
MIT License
362 stars 67 forks source link

How use in forms? #40

Closed carlituxman closed 9 years ago

carlituxman commented 10 years ago

How can I use in checkbox forms?

I've tried but the data value not arrive in the post

penguinpowernz commented 9 years ago

You probably want to make it toggle a checkbox, and then hide the checkbox from view (using style="display: none" or what not).

carlituxman commented 9 years ago

a checkbox when not checked not arrives in post

penguinpowernz commented 9 years ago

You can't make your server side logic handle that? Otherwise you are going to need to do some logic in javascript before sending the form. Add a hidden input to your form:

<div class="toggle toggle-modern engage_thrusters"/>
<input type="hidden" id="engage_thrusters" name="engage_thrusters"/>

Then do something like:

$("#myform").submit(function() {
  value = $(".toggle.engage_thrusters").data("toggles").active ? "yes" : "no";
  $("#engage_thrusters").val(value);
});

I'm not sure if I used the right syntax there... but you get the idea.

penguinpowernz commented 9 years ago

Any luck @carlituxman ?

carlituxman commented 9 years ago

I solve when arrive the post or using radio buttons

Enviado con MailTrack https://mailtrack.io/install?source=signature&lang=es&referral=carlos@informatik.es&idSignature=23

2014-12-01 23:38 GMT+01:00 Robert McLeod notifications@github.com:

Any luck @carlituxman https://github.com/carlituxman ?

— Reply to this email directly or view it on GitHub https://github.com/simontabor/jquery-toggles/issues/40#issuecomment-65147806 .

Carlos Jiménez Mora INFORMATIK SOLUCIONES Tlf: 950 42 62 68 - Serón (Almería) @carlituxman https://twitter.com/carlituxman - carlos@informatik.es - www.informatik.es

Este mensaje y sus anexos pueden contener información confidencial, por lo que se informa de que su uso no autorizado está prohibido por la ley. Si Vd. considera que no es el destinatario pretendido por el remitente o no desea recibir información comercial, por favor póngalo en su conocimiento por esta misma vía o por cualquier otro medio y elimine esta comunicación y los anexos de su sistema, sin copiar, remitir o revelar los contenidos del mismo a cualquier otra persona. Cualquier información, opinión, conclusión, recomendación, etc. contenida en el presente mensaje no relacionada con la actividad empresarial de INFORMATIK BC SOLUCIONES S.L. y/o emitida por persona sin capacidad para ello, deberá considerarse como no proporcionada ni aprobada por INFORMATIK BC SOLUCIONES S.L. pone los medios a su alcance para garantizar la seguridad y ausencia de errores en la correspondencia electrónica, pero no puede asegurar la inexistencia de virus o la no alteración de los documentos transmitidos electrónicamente, por lo que declina cualquier responsabilidad a este respecto.

penguinpowernz commented 9 years ago

Ah cool, you should close this issue if it's all fixed :)