vitalets / combodate

Dropdown date and time picker
http://vitalets.github.com/combodate
207 stars 82 forks source link

Toggle view #24

Closed KaitaniLabs closed 9 years ago

KaitaniLabs commented 10 years ago

Would be nice to offer a toggle to switch from combodate to raw text-input. Some users for a site might prefer to use the raw version especially if they know the format expected.

vitalets commented 9 years ago

hi, it can be easily performed with jQuery toggle() method:

               $('button.toggle').click(function(){
                   $('input').toggle();
                   $('.combodate').toggle();
               });