-
12 Mar 2008 3:03 AM #11
I implemented this in the button handler which brings up the date picker
Though i am still in search for a way to close the date picker when user clicks anywhere on the screen (apart from picker). Above method closes the date picker only if user clicks the button.Code:date_picker = = new Ext.DatePicker(); // Button handler function handler: function() { if (date_picker.rendered) { if (date_picker.isVisible()) { date_picker.hide(); } else { date_picker.show(); } } else { date_picker.render('choose_date'); } }
-
16 Mar 2008 6:38 AM #12
hi, may i know how to tune back the css for the date picker ??
since it is created at out of the grid...
might be some of the css is no longer can apply into it ...
css bug when choose year or month.
thx
Similar Threads
-
Time Picker Combobox?
By San in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 27 Feb 2007, 2:06 PM -
DateEditor date picker and disabledDates
By jamaljohnson in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 25 Jan 2007, 6:45 PM -
date picker
By pomata in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 10 Dec 2006, 12:11 PM -
Color picker editor for yui-ext
By rodiniz in forum Community DiscussionReplies: 10Last Post: 25 Nov 2006, 8:22 PM -
Remove Day of the Week from Date Picker
By dmayer in forum Ext 1.x: Help & DiscussionReplies: 8Last Post: 5 Oct 2006, 1:42 PM


Reply With Quote