[jQuery] Re: datePicker v2 beta

2007-06-07 Thread Kelvin Luck
Rob Desbois wrote: I disagree; in the interest of keeping the plugin small, to do this outside the class is equally minimal effort and I don't think the plugin should accept every possible representation. If you always use Date where String is required, you can overload and wrap the function t

[jQuery] Re: datePicker v2 beta

2007-06-06 Thread Rob Desbois
I disagree; in the interest of keeping the plugin small, to do this outside the class is equally minimal effort and I don't think the plugin should accept every possible representation. If you always use Date where String is required, you can overload and wrap the function to perform the conversio

[jQuery] Re: datePicker v2 beta

2007-06-06 Thread Brian Miller
Just my opinion: both Date and String should be supported. It's probably only two lines of code to check for type, and cast to the other type if necessary. - Brian >>> There's a bug or documentation error with dpSetSelected() [revision >>> #1993] : it's documented as taking a string, but the c

[jQuery] Re: datePicker v2 beta

2007-06-06 Thread Rob Desbois
A tricky one...or perhaps not. My feeling is that the datePicker is there to replace not enhance the input field. I'm not overly pleased with the blur() method as it breaks tabbing between fields. I didn't know that autocomplete could be suppressed (thank you!), but I think that would be the most

[jQuery] Re: datePicker v2 beta

2007-06-05 Thread Kelvin Luck
Rob Desbois wrote: I've had an issue in Firefox2.0 using the plugin with the 'clickInput' option turned on. When the input field has the focus, clicking on it to display the datePicker will work, but over the top of that will be Firefox's drop-down box showing previous inputs to that field.

[jQuery] Re: datePicker v2 beta

2007-06-05 Thread Kelvin Luck
There's a bug or documentation error with dpSetSelected() [revision #1993] : it's documented as taking a string, but the code for it requires a Date (due to using .getMonth(), .getFullYear() and .getTime()). To fix this problem I added the line d = new Date(d); to the start of dpSetSelect

[jQuery] Re: datePicker v2 beta

2007-06-04 Thread Rob Desbois
I've had an issue in Firefox2.0 using the plugin with the 'clickInput' option turned on. When the input field has the focus, clicking on it to display the datePicker will work, but over the top of that will be Firefox's drop-down box showing previous inputs to that field. The solution I've used

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Chris W. Parker
On Friday, June 01, 2007 1:11 PM gee <> said: > E.g., instead of: > > Start date: [text input] [.png] > > The display appears as: > > Start date: > [text input][.png] > > I gather it has something to do with using a float in the style > declaration for a.dp-choose-date. Before I wade into exp

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread gee
(I clumsily posted this as a new topic yesterday (http:// groups.google.com/group/jquery-en/browse_thread/thread/ b8471b7990296b12?hl=en); I am reposting it here -- hopefully in the correct thread -- with advance apologies for the clutter.) Great work! An issue I have experienced with both the o

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Rob Desbois
No problem - thanks for the informative answers. Click input is a special case which relates to an input field. When a date is selected the .text property of the input field is updated. So it wouldn't work too well on any other type of element. I guess this semantically makes sense: being user

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Kelvin Luck
Hello again! Rob Desbois wrote: Also, dpSetPosition() has the wrong first sentence too. Thanks - I'll fix that too. There's a bug or documentation error with dpSetSelected() [revision #1993] : it's documented as taking a string, but the code for it requires a Date (due to using .getMonth

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Kelvin Luck
Hi, Thanks for your feedback on the date picker... I'll address your points below: Rob Desbois wrote: Well, I've finally taken the plunge and started playing with datePicker. Can I join everyone in thanking you for this excellent plugin. Thanks :) Suggestions for a few changes, mainly o

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Rob Desbois
Also, dpSetPosition() has the wrong first sentence too. There's a bug or documentation error with dpSetSelected() [revision #1993] : it's documented as taking a string, but the code for it requires a Date (due to using .getMonth(), .getFullYear() and .getTime()). To fix this problem I added the

[jQuery] Re: datePicker v2 beta

2007-06-01 Thread Rob Desbois
Well, I've finally taken the plunge and started playing with datePicker. Can I join everyone in thanking you for this excellent plugin. Suggestions for a few changes, mainly ones which increased the time it took for me to integrate it into a page without hacking the source: == Change the clickIn

[jQuery] Re: datePicker v2 beta

2007-05-21 Thread tlphipps
Awesome! The packing and the hovering work great! Thanks for the amazing support. On May 20, 2:17 pm, Kelvin Luck <[EMAIL PROTECTED]> wrote: > Hi, > > I've added support for this into the date > picker:http://dev.jquery.com/changeset/1933#file2 > > As you can see, you can now pass a hoverClass

[jQuery] Re: datePicker v2 beta

2007-05-21 Thread Kelvin Luck
pd wrote: Is there any particular reason why your plugin doesn't have an option for specifying time as well as date? I'd like to use this plugin but need time functionality. Because I'd like to keep the plugin as light weight as possible (it's already bigger than it should ideally be) and p

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread sithram
Hi Kelvin, The evolution is wondelful! It's a great and useful plugin. Thanks for your job! Xavier On Apr 24, 11:54 am, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to announce the beta release of v2 of my datePicker plugin for > jQuery. This release is a complete rewrite which

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread pd
Is there any particular reason why your plugin doesn't have an option for specifying time as well as date? I'd like to use this plugin but need time functionality. On Apr 24, 7:54 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to announce the beta release of v2 of my datePicker

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Ⓙⓐⓚⓔ
packer wants semis everywhere!!! if (x==1) y= 1; else y =2; But I did get my code packed thanks!!! On 5/20/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: Well D'oh! I should have tried that!!! On 5/20/07, Kelvin Luck <[EMAIL PROTECTED]> wrote: > > > Ⓙⓐⓚⓔ wrote: > > thanks! I thought semis were j

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Ⓙⓐⓚⓔ
Well D'oh! I should have tried that!!! On 5/20/07, Kelvin Luck <[EMAIL PROTECTED]> wrote: Ⓙⓐⓚⓔ wrote: > thanks! I thought semis were just required when removing linebreaks > wouldn't work... I searched the 'net for a definitive rule, I just found > the regular work-arounds, (semis all over). >

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Kelvin Luck
Ⓙⓐⓚⓔ wrote: thanks! I thought semis were just required when removing linebreaks wouldn't work... I searched the 'net for a definitive rule, I just found the regular work-arounds, (semis all over). I'm prepping some code to be packed. Do I have to cat it together with the jquery-lite first? c

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Kelvin Luck
Hi, I've added support for this into the date picker: http://dev.jquery.com/changeset/1933#file2 As you can see, you can now pass a hoverClass to $().datePicker or $().renderCalendar which is added to each TD of the calendar as you hover over it. This defaults to dp-hover. You can also pass f

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Ⓙⓐⓚⓔ
thanks! I thought semis were just required when removing linebreaks wouldn't work... I searched the 'net for a definitive rule, I just found the regular work-arounds, (semis all over). I'm prepping some code to be packed. Do I have to cat it together with the jquery-lite first? can I pack a file

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Kelvin Luck
Hi Jake, I think it needs them in any situation where a linebreak is being used to indicate the end of an expression (as when the linebreaks are removed this implicit end of expression is lost). You can see the changes I had to make to get it to work with packer here: http://dev.jquery.com/

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Ⓙⓐⓚⓔ
Kelvin, I thought packer only needed the final ; ... do you know the rules? is it as simple as making it work if you remove all linefeeds? On 5/20/07, Kelvin Luck <[EMAIL PROTECTED]> wrote: tlphipps wrote: > Sorry, one more thing. I can't get a clean compressed/packed version > of v2. Has a

[jQuery] Re: datePicker v2 beta

2007-05-20 Thread Kelvin Luck
tlphipps wrote: Sorry, one more thing. I can't get a clean compressed/packed version of v2. Has anybody else had any luck packing this? Hi, I've just added some missing semicolons to the date picker sourcecode so that you can now pack it successfully with Dean Edwards' Packer, Cheers, K

[jQuery] Re: datePicker v2 beta

2007-05-18 Thread tlphipps
Thanks Karl. I've come up with code that will do what I need based on your link, but I can't figure out where it needs to be placed in the datepicker code in order to fire at the correct time (when the calendar pops up). On May 18, 12:38 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On May 18,

[jQuery] Re: datePicker v2 beta

2007-05-18 Thread Karl Swedberg
On May 18, 2007, at 1:09 PM, tlphipps wrote: Anybody have any input on how to get the :hover effect back in IE with v2? Not sure about the datePicker v2 in particular, but this blog entry discusses the the topic in more general terms: http://www.learningjquery.com/2007/02/quick-tip-set-h

[jQuery] Re: datePicker v2 beta

2007-05-18 Thread tlphipps
Sorry, one more thing. I can't get a clean compressed/packed version of v2. Has anybody else had any luck packing this? On May 8, 6:46 pm, Will <[EMAIL PROTECTED]> wrote: > Overall, I think the new date picker and jquery are really awesome! > > I do have one comment though. I find the date par

[jQuery] Re: datePicker v2 beta

2007-05-18 Thread tlphipps
Another issue I've uncovered is related to the :hover effects. In your original date picker you were obviously using s because the hover effect worked correctly in IE. However, hovering doesn't work in v2 because of IE's quirkiness. Anybody have any input on how to get the :hover effect back in

[jQuery] Re: datePicker v2 beta

2007-05-08 Thread Will
Overall, I think the new date picker and jquery are really awesome! I do have one comment though. I find the date parsing logic a little too strict. If I use format mm/dd/ and I type in 5/1/2007, it's not going to parse correctly (code in date.js:440). This causes the calendar to not refre

[jQuery] Re: datePicker v2 beta

2007-05-02 Thread tlphipps
Kelvin, Have you been able to make any progress on detecting the edge of the browser? This is the one thing that has really been problematic for me. On May 2, 10:38 am, Sam Collett <[EMAIL PROTECTED]> wrote: > On Apr 30, 2:34 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > > On M

[jQuery] Re: datePicker v2 beta

2007-05-02 Thread Ariel Jakobovits
2007 8:38:21 AM Subject: [jQuery] Re: datePicker v2 beta On Apr 30, 2:34 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > On Mon, April 30, 2007 12:25 pm, Sam Collett wrote: > > > Several features in that picker that look like they would be hand

[jQuery] Re: datePicker v2 beta

2007-05-02 Thread Sam Collett
On Apr 30, 2:34 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > On Mon, April 30, 2007 12:25 pm, Sam Collett wrote: > > > Several features in that picker that look like they would be handy in > > Kelvin's that aren't in yet are: > > > Keyboard Navigation > > I've been thinking about this...

[jQuery] Re: datePicker v2 beta

2007-04-30 Thread Kelvin Luck
On Mon, April 30, 2007 12:30 pm, Sam Collett wrote: > Just thought of something else - an onDateChanged event. Could be > useful for date pickers that depend on each other (i.e. a date range, > defined by two pickers - 'picker2' has to be a later date than > 'picker1') > I'm guessing you didn't

[jQuery] Re: datePicker v2 beta

2007-04-30 Thread Kelvin Luck
Hi, On Mon, April 30, 2007 12:25 pm, Sam Collett wrote: > > Several features in that picker that look like they would be handy in > Kelvin's that aren't in yet are: > > Keyboard Navigation I've been thinking about this... It's not a priority for me currently because I'm not sure that it would be

[jQuery] Re: datePicker v2 beta

2007-04-30 Thread R. Rajesh Jeba Anbiah
On Apr 30, 4:30 pm, Sam Collett <[EMAIL PROTECTED]> wrote: > On Apr 30, 12:25 pm, Sam Collett <[EMAIL PROTECTED]> wrote: > > On Apr 28, 9:39 am, "R.RajeshJebaAnbiah" > > <[EMAIL PROTECTED]> wrote: > > > On Apr 24, 2:54 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote:> Hi, > > > > > I'd like to announc

[jQuery] Re: datePicker v2 beta

2007-04-30 Thread Sam Collett
On Apr 30, 12:25 pm, Sam Collett <[EMAIL PROTECTED]> wrote: > On Apr 28, 9:39 am, "R. Rajesh Jeba Anbiah" > > <[EMAIL PROTECTED]> wrote: > > On Apr 24, 2:54 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote:> Hi, > > > > I'd like to announce the beta release of v2 of mydatePickerplugin for > > > jQuery

[jQuery] Re: datePicker v2 beta

2007-04-30 Thread Sam Collett
On Apr 28, 9:39 am, "R. Rajesh Jeba Anbiah" <[EMAIL PROTECTED]> wrote: > On Apr 24, 2:54 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote:> Hi, > > > I'd like to announce the beta release of v2 of mydatePickerplugin for > > jQuery. This release is a complete rewrite which makes the date picker > > co

[jQuery] Re: datePicker v2 beta

2007-04-28 Thread R. Rajesh Jeba Anbiah
On Apr 24, 2:54 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to announce the beta release of v2 of my datePicker plugin for > jQuery. This release is a complete rewrite which makes the date picker > considerably more powerful and flexible than it previously was. Check out the

[jQuery] Re: datePicker v2 beta

2007-04-27 Thread withoutwax
Wow absolutely fantastic! I played around with the previous version on a travel website I was developing but found it just wasn't quite right. But this new version looks awesome. It works perfectly in IE7 - any news on backwards compatability with IE6 for example? Also - how difficult would it

[jQuery] Re: datePicker v2 beta

2007-04-27 Thread Sam Collett
On Apr 26, 5:25 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Sam Collett schrieb:> Positioning may be done with my other plugin (http:// > >www.texotela.co.uk/code/jquery/below/), which has a bug that I can't > > seem to fix - zoom affects positioning if you don't refresh the page > > (which i

[jQuery] Re: datePicker v2 beta

2007-04-26 Thread Ariel Jakobovits
2007 6:34:31 AM Subject: [jQuery] Re: datePicker v2 beta On Wed, 25 Apr 2007 13:04:59 +0100, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > > No, really, I mean clickInput: false. if its true, clicking before the drag > opens the calendar. > > but if it's false, i can

[jQuery] Re: datePicker v2 beta

2007-04-26 Thread Jörn Zaefferer
Sam Collett schrieb: Positioning may be done with my other plugin (http:// www.texotela.co.uk/code/jquery/below/), which has a bug that I can't seem to fix - zoom affects positioning if you don't refresh the page (which incidentally occurs with your plugin as well) Cool, thanks for bringing

[jQuery] Re: datePicker v2 beta

2007-04-26 Thread Sam Collett
On Apr 25, 3:47 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > I only just received this email even though it looks like it was sent > yesterday... Is anyone else still having issues with the list lagging? > > > > > Looking good. Lots of examples - although it would be nice to have > > some CSS s

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Wed, 25 Apr 2007 22:20:16 +0100, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > > Does the Date.format field get reference within the datepicker function or > does it get copied when the function is run initially. > > So... > > Date.format = FORMAT_1 > > jQuery('#1').datepicker(); > > Date.for

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Shaun Kester
I copied the date.js that is linked from your demo page. I'll give it a try again later. Thanks for your time. On Apr 25, 2:13 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > On Wed, 25 Apr 2007 18:28:09 +0100, Shaun Kester <[EMAIL PROTECTED]> wrote: > > > I get an error in Firefox and IE with the

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Ariel Jakobovits
ke when it is opened and used down the road...FORMAT_1 or FORMAT_2? - Original Message From: Kelvin Luck <[EMAIL PROTECTED]> To: jquery-en@googlegroups.com Sent: Wednesday, April 25, 2007 6:35:45 AM Subject: [jQuery] Re: datePicker v2 beta > you are right. I just like to

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Wed, 25 Apr 2007 18:28:09 +0100, Shaun Kester <[EMAIL PROTECTED]> wrote: > > I get an error in Firefox and IE with the latest build. Firebug > output: > > (new Date).zeroTime is not a function It seems like you didn't include the date.js file? Or maybe you included the one from the jQuery sv

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Charles Capps
Kelvin Luck wrote: > Hi, > > Thanks for the feedback. Re. the invalid dates, I'm not sure where this > should be corrected. You don't want to stop someone from selecting 31 in the > date dropdown just because the month dropdown is on Feb (as they may be > selecting 31 and then planning to chan

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Shaun Kester
I get an error in Firefox and IE with the latest build. Firebug output: (new Date).zeroTime is not a function setStartDate(undefined)jquery.datePicker... (line 516) init(Object renderCallback=[0] createButton=true)jquery.datePicker... (line 498) (no name)()jquery.datePicker... (line 215) e([input

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Dan G. Switzer, II
Kelvin, >> * When the calendar _starts_ with an arrow disabled the hand cursor >> doesn't turn up again even though it's enabled. > >I managed to replicate this and have fixed it. Well - worked around it. To >be honest it looked like a bug in Opera but it works if your rules are a >bit more speci

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
> I've found some issues in Opera 9: > > * Sometimes the calendar doesn't render instantly when browsing fast > through the dates, which makes it close unintentionally. I've fixed it > by setting a fixed hight and width on div#dp-popup in the CSS. Yes - I was able to replicate this by clicking l

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
I only just received this email even though it looks like it was sent yesterday... Is anyone else still having issues with the list lagging? > > Looking good. Lots of examples - although it would be nice to have > some CSS samples as well (or 'style packs' - Outlook 2003, Google > Calendar etc)

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Mike Chabot
I would guess this is not going to happen any time soon. There are a lot of date pickers for ASP.NET already, including one distributed by Microsoft as part of their Ajax library. They way ASP.NET pages get converted to HTML when viewed by the user makes it hard to use any JavaScript library that

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread fajerstarter
I've found some issues in Opera 9: * Sometimes the calendar doesn't render instantly when browsing fast through the dates, which makes it close unintentionally. I've fixed it by setting a fixed hight and width on div#dp-popup in the CSS. * When the calendar _starts_ with an arrow disabled the ha

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Brian Miller
It's easy enough to simply code the

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread rolfsf
Thanks for the explanation Citrus. I'm strictly a front-end designer, so I don't really understand the whole .NET paradigm, or why it needs to be a server-side control. I've already introduced jQuery and several plugins into the mix, and the .NET developers love it. I'll try and get a better expl

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Sam Collett
On Apr 24, 10:54 am, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to announce the beta release of v2 of my datePicker plugin for > jQuery. This release is a complete rewrite which makes the date picker > considerably more powerful and flexible than it previously was. Check out the

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Brian Miller
It's a .NET thing. The ASP.NET paradigm is to write your page in a server-side language (usually C#), and the server-side object gets rendered into whatever is viewed on the client side. It would be pretty involved, though, because the plugin is dependent on jQuery (and bgiframe, and the Date me

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Wed, 25 Apr 2007 14:25:19 +0100, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > > Kelvin, > >> I've implemented a new dpSetDisabled feature so that you can disable and >> reenable date picker instances. New demo here: >> >> http://kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerDis

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Wed, 25 Apr 2007 13:08:10 +0100, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > > sorry for 2 emails for one response. > > I don't mean "Set to today" I mean "Go To Today" in the calendar itself. > > see, if I type '123' in the date field, then click the calendar icon to open > the popup, the

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Nettoyeur
wow, already implemented after a few hours, that's fast enough for me ;-) Thanks for spending your time on this feature, you made my day! On Apr 25, 12:24 pm, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > > Long story short, it would be nice to be able to set datePicker in > > "disabled mode" ;-) >

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
> you are right. I just like to have customizations like that written right > there in the code where I apply the calendar plugin so future developers will > see it rather than have to hunt for the source of the date format. doesn't > really matter, its up to you. > It won't hurt to reset the

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Wed, 25 Apr 2007 13:04:59 +0100, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > > No, really, I mean clickInput: false. if its true, clicking before the drag > opens the calendar. > > but if it's false, i can't drag to delete a date i put there. > Weird! I don't have IE7 here so I can't test

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Dan G. Switzer, II
Kelvin, >I've implemented a new dpSetDisabled feature so that you can disable and >reenable date picker instances. New demo here: > >http://kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerDisabled.h >tml Just a quick behavioral quirk I noticed. After disabling the field, the cursor sho

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Ariel Jakobovits
-en@googlegroups.com Sent: Wednesday, April 25, 2007 5:02:18 AM Subject: [jQuery] Re: datePicker v2 beta > it appears in IE7 that if you have clickInput: false you cannot drag to > select the text in the input field anymore. I presume you mean if you have clickInput:true? The simple answ

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Ariel Jakobovits
il 25, 2007 5:02:18 AM Subject: [jQuery] Re: datePicker v2 beta > it appears in IE7 that if you have clickInput: false you cannot drag to > select the text in the input field anymore. I presume you mean if you have clickInput:true? The simple answer is not to use clickInput:true if you wan

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
> it appears in IE7 that if you have clickInput: false you cannot drag to > select the text in the input field anymore. I presume you mean if you have clickInput:true? The simple answer is not to use clickInput:true if you want people to be able to select the text! To tell the truth I wouldn't

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Ariel Jakobovits
From: Kelvin Luck <[EMAIL PROTECTED]> To: jquery-en@googlegroups.com Sent: Wednesday, April 25, 2007 4:31:09 AM Subject: [jQuery] Re: datePicker v2 beta On Wed, 25 Apr 2007 08:34:06 +0100, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > I just added this to my site. Very nice plugin.

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Tue, 24 Apr 2007 16:23:29 +0100, Daemach <[EMAIL PROTECTED]> wrote: > > Very cool - I can finally replace xin :) One thing I had to hack into > that code was the ability to trigger an event on the input field > programatically after selecting the date. Can you provide a > triggerEvent("keyup

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
> Works flawlessly in Safari 2.0.4 (build 419.3), comparing functionality > and rendering with Firefox 2. > > However, there is a possible bug in this demo: > http://kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerIntoSelects.html > > It lets you select "invalid" dates, such as Feb 31 wi

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Wed, 25 Apr 2007 08:34:06 +0100, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > I just added this to my site. Very nice plugin. You should be proud. One > question/request: set the format PER calendar, not globally with Date. > > Again, nice work. and thank you for the documentation. > > -Arie

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
> Looks fantastic, Kelvin! I showed it to our lead engineer who has been > assessing date packages and he said he'd drop his current date package in a > heartbeat for this one IF someone had built a server-side version of it > (.NET). So, if anyone takes on that challenge let me know. I long for t

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Ariel Jakobovits
ED]> To: jquery-en@googlegroups.com Sent: Wednesday, April 25, 2007 3:24:14 AM Subject: [jQuery] Re: datePicker v2 beta > Long story short, it would be nice to be able to set datePicker in > "disabled mode" ;-) > In "disabled mode", the calendar-icon would get another class and >

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
On Wed, 25 Apr 2007 01:03:23 +0100, Su <[EMAIL PROTECTED]> wrote: > This looks great, Kelvin. > The only thing I'm curious about is the almost complete lack of > consideration for time with almost every single picker I've ever seen. I > have a need for one, for example, where the input consists o

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
> Long story short, it would be nice to be able to set datePicker in > "disabled mode" ;-) > In "disabled mode", the calendar-icon would get another class and > clicks would not be working. But I guess this is a bit of a curious > feature request ;-) > > Anyway, thanks for the new version ! I've

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
> > I wonder if is was possible to display two months , should be > extremely helpfull for travel sites , could it be done easily ? > Great work ! > Jamin > It's not currently possible but I've put it onto the TODO list, hopefully I'll be able to do it before the datePicker comes out of beta...

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Kelvin Luck
Thanks for the feedback Luke... > > Is there any way to use the datePicker with the keyboard? I couldn't > figure out how to open it without clicking the calendar icon (which I > couldn't tab to). > I can pop up the calendar with the keyboard (in Firefox 2 and IE 6) - I can tab to it and then p

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Mayowa
Kevin, I just have to say; its fantastic! On Apr 24, 10:54 am, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to announce the beta release of v2 of my datePicker plugin for > jQuery. This release is a complete rewrite which makes the date picker > considerably more powerful and fle

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread Ariel Jakobovits
ps.com Sent: Tuesday, April 24, 2007 5:03:23 PM Subject: [jQuery] Re: datePicker v2 beta This looks great, Kelvin. The only thing I'm curious about is the almost complete lack of consideration for time with almost every single picker I've ever seen. I have a need for one, for example,

[jQuery] Re: datePicker v2 beta

2007-04-25 Thread =jamon
Is that possible to have a two month display without too much coding , i think it will help lots of travel sites using jquery...Have you an idea to start in the right way. Thanks for this excellent and pro work, J On Apr 24, 11:54 am, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread fabyo . php
Thanks i desenvolv datagrid +- http://extjs.com/deploy/ext/docs/ Inline editing -> 2 cliques in date visibled datepiker I you trying to make one grid using its to datepiker thanks On 24 abr, 06:54, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to announce the beta release of v2

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Daemach
Very cool - I can finally replace xin :) One thing I had to hack into that code was the ability to trigger an event on the input field programatically after selecting the date. Can you provide a triggerEvent("keyup|focus|change") parameter that will trigger the specified event in the attached in

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Fabyo Guimaraes
Thanks a lot I go to try to make my projet is only use jquery http://www.fabyoguimaraes.com/jquery/tabela/ I love jquery thanks return 2007/4/24, Diego A. <[EMAIL PROTECTED]>: > > > I'd just come across a scenario where events would have made > datePicker more flexible and was thinking of pass

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread rolfsf
Looks fantastic, Kelvin! I showed it to our lead engineer who has been assessing date packages and he said he'd drop his current date package in a heartbeat for this one IF someone had built a server-side version of it (.NET). So, if anyone takes on that challenge let me know. I long for the day

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Charles Capps
Kelvin Luck wrote: > Hi, > > I'd like to announce the beta release of v2 of my datePicker plugin for > jQuery. This release is a complete rewrite which makes the date picker > considerably more powerful and flexible than it previously was. Check out the > temporary project page: > > http://ke

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Brandon Aaron
Great work! All the demos work in Safari. -- Brandon Aaron On 4/24/07, Kelvin Luck <[EMAIL PROTECTED]> wrote: Hi, I'd like to announce the beta release of v2 of my datePicker plugin for jQuery. This release is a complete rewrite which makes the date picker considerably more powerful and fl

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Fabien Meghazi
It's a clean 10 out of 10 from me. Yeah sure !! This is an excellent plugin ! Maybe adding ESC key mapping in order to close would be a plus.

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Dan G. Switzer, II
Kelvin, >> * When using clickInput:true, you might want to turn off autocomplete >> automatically for the field. When the browser's built-in autocomplete box >> gets triggered, it hovers over the data picker. Plus it looks a little >> weird. > >Thanks for the info. My browser hadn't tried to auto

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Su
This looks great, Kelvin. The only thing I'm curious about is the almost complete lack of consideration for time with almost every single picker I've ever seen. I have a need for one, for example, where the input consists of not just date, but the /time/ of an event, output on a 24hour clock. And

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Kelvin Luck
On Tue, 24 Apr 2007 14:56:41 +0100, Diego A. <[EMAIL PROTECTED]> wrote: > > I'd just come across a scenario where events would have made > datePicker more flexible and was thinking of passing the idea to you. > http://groups.google.com/group/jquery-en/browse_frm/thread/8993bb17785c6d3b?hl=en > >

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Scott Sauyet
Kelvin Luck wrote: I'd like to announce the beta release of v2 of my datePicker plugin for jQuery. This release is a complete rewrite which makes the date picker considerably more powerful and flexible than it previously was. Check out the temporary project page: http://kelvinluck.com/assets

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Christopher Jordan
Kelvin, The size of the calendar is totally controlled via CSS so yes - you can configure it with CSS... cool :o) The date picker is implemented as a popup but did you see the renderCalendar examples? These allow you to draw a calendar table into any element in your document. I'll have

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Nettoyeur
Kevin, thanks for the fantastic work, almost all my wishes for v1 have come thru. I have already implemented v1 in my page which uses google-adwords style datepickers. This means, one radio button followed by a select with quick options like "today" ,"yesterday", "this week" "last month" etc. Bel

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Dmitrii 'Mamut' Dimandt
Kelvin Luck wrote: > Hi, > > I'd like to announce the beta release of v2 of my datePicker plugin for > jQuery. This release is a complete rewrite which makes the date picker > considerably more powerful and flexible than it previously was. Check out the > temporary project page: > > http://kelv

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Glen Lipka
On 4/24/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: Kelvin, >I'd like to announce the beta release of v2 of my datePicker plugin for >jQuery. This release is a complete rewrite which makes the date picker >considerably more powerful and flexible than it previously was. Check out >the tem

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Chris W. Parker
On Tuesday, April 24, 2007 2:55 AM Kelvin Luck <> said: > I'd like to announce the beta release of v2 of my datePicker plugin > for jQuery. This release is a complete rewrite which makes the date > picker considerably more powerful and flexible than it previously > was. Check out the temporary pr

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Fabyo Guimaraes
http://www.fabyoguimaraes.com/jquery/tabela/ 90% complete using its example datePicker with multiple select thanks, = ) 2007/4/24, Fabyo Guimaraes <[EMAIL PROTECTED]>: > > Thanks a lot I go to try to make > > my pro

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Klaus Hartl
Mike Alsup schrieb: This is awesome, Kelvin!! +1 Just in time to make it into plazes probably... :-) -- Klaus

  1   2   >