Re: [fw-general] Zend_Form Date input

2008-05-16 Thread Bart McLeod
it is the same one as Bagus recommends by the way... Bart McLeod schreef: http://marcgrabanski.com/code/ui-datepicker/ I actually used this with Zend_Form. It is easy to integrate and comes under MIT license. It has many language files and works very nice. Colors can be customized.

Re: [fw-general] Zend_Form Date input

2008-05-16 Thread Bart McLeod
http://marcgrabanski.com/code/ui-datepicker/ I actually used this with Zend_Form. It is easy to integrate and comes under MIT license. It has many language files and works very nice. Colors can be customized. Bart Chris MacPherson schreef: That also sounds like a good idea, a lot less work t

RE: [fw-general] Zend_Form Date input

2008-05-16 Thread Bagus Nugroho
neral@lists.zend.com Subject: Re: [fw-general] Zend_Form Date input That also sounds like a good idea, a lot less work than extending the form element probably. I'' check these both out too. Thanks Marcus. Marcus Bointon wrote: > On 16 May 2008, at 15:17, Chris MacPherson wrot

Re: [fw-general] Zend_Form Date input

2008-05-16 Thread Chris MacPherson
That also sounds like a good idea, a lot less work than extending the form element probably. I'' check these both out too. Thanks Marcus. Marcus Bointon wrote: On 16 May 2008, at 15:17, Chris MacPherson wrote: Has anyone covered this ground before at all? Or have any ideas or pointers that I

Re: [fw-general] Zend_Form Date input

2008-05-16 Thread Chris MacPherson
Cool, I was just looking into extending the Zend_Form_Element so I'll take a look at the example you suggested and have a play. Thanks for the quick reply. Xavier Vidal Piera wrote: In order to achieve this I've created a Form_Element called DateCombo. This one is associated with a View_Help

Re: [fw-general] Zend_Form Date input

2008-05-16 Thread Matthew Weier O'Phinney
-- Chris MacPherson <[EMAIL PROTECTED]> wrote (on Friday, 16 May 2008, 03:17 PM +0100): > I'm trying to figure out the easiest way of creating a date input > structure to use in my Zend_Forms. Something that will allow the user to > select a day, month and year. > > I can see this becoming a mo

Re: [fw-general] Zend_Form Date input

2008-05-16 Thread Marcus Bointon
On 16 May 2008, at 15:17, Chris MacPherson wrote: Has anyone covered this ground before at all? Or have any ideas or pointers that I can check out. Several widget projects have good date selectors - take a look at dojo. I also like Zapatec's calendar as it's the only one I've found that

Re: [fw-general] Zend_Form Date input

2008-05-16 Thread Xavier Vidal Piera
In order to achieve this I've created a Form_Element called DateCombo. This one is associated with a View_Helper called FormDateCombo that renders the 3 selects automatically. If the element is called "birthdate", the 3 selects are called "birthdate_day", "birthdate_month" and "birthdate_year" ins

[fw-general] Zend_Form Date input

2008-05-16 Thread Chris MacPherson
Hi, I'm trying to figure out the easiest way of creating a date input structure to use in my Zend_Forms. Something that will allow the user to select a day, month and year. I can see this becoming a monster if I have to do it using three Zend_Form_Element_Select for every date input as I hav