by kkikta
17. February 2010 17:50
For what ever reason there seem to be hundreds of calendar tools for web form entry and only a hand full of ones for time. Most of time ones are either confusing, not helpful or more work than typing it in your self. So i went searching since jQuery is my new favorite tool and I found this is a pretty cool jquery time picker (widget/gadget what ever you call it) http://www.radoslavdimov.com/jquery-plugins/jquery-plugin-timepicker/#Examples. Its quite functional but I quickly found it has some missing features. First if your using 12 hour (most people understand it better so pretty much a required feature) there is no way to pick AM/PM. Second drop downs are nice but I like text boxes better. Anyway below is my take on adding these features.
jquery.jtimepicker.debug.js (10.39 kb)
jquery.timepicker.css (1.47 kb)
To use the textbox type you will need tie it to a textbox instead of a div and set:
selectType: false
by kkikta
8. October 2009 21:25
A couple of days ago I found a pretty cool jQuery plugin for doing two select boxes called picklists. I started using it but immediately noticed one feature was missing from it, when the list is loaded it doesn't load "selected" items into the second list. First I tried to hack some code to move the stuff and although I got it working I decided that wasn't really the right solution. Anyway I've add the setting "preload". When its true items that are selected at the time picklist plugin is loaded are added to the selected list so now its a pretty cool tool for .net/cf/php/etc. When the setting is false it does the same as it did before (the selected items list is blank). Anyway enjoy! ;P
jquery.picklists.js (4.75 kb)