Re: Problem with DATE.

2009-10-29 Thread nini
Hello, Please,next time support your question with your code. The attribute you need is 'minYear', please check out the manual and API to get more information: http://book.cakephp.org/view/189/Automagic-Form-Elements#options-minYear-options-maxYear-480

Re: Problem with DATE.

2009-10-29 Thread Céryl
Using the form-helper, change the input for the date to: $form-input('date', array('minYear' = 1950)). When the input is for something like a birthday, you can also add a 'maxYear' = 2000 or something to that last array since obviously nobody born in 2029 will be using your site now. :) On 29

Problem with DATE.

2009-10-28 Thread Jiru
Hii Programmers , In cakephp when I use DATE field it displays the dropdown list with year limit 1989-2029 how can we get the date from 1950? regards, jiru --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: problem with date() and $form-input() when type = date

2007-08-29 Thread ivancasta
thanks dragonl. but i think that this problem shuld be solved in cakephp libs. cakephp should have any way to solve this. if there is no way, i try with other librarys. i`ll see the yours but i think this is a commom problem and is strange that i cant do bithrday select with date prior to 1970.

Re: problem with date() and $form-input() when type = date

2007-08-28 Thread ivancasta
i forgot say the warning only apperar when the birthday stored is prior to 1970 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To

problem with date() and $form-input() when type = date

2007-08-28 Thread ivancasta
hi all: i use cakephp 1.2.0.5427alpha i want to do a simply select tags to the user in my register page submit the day of birthday. this selects tags are created by cakephp automatically when a use the $form-input('model.field',array('type'='date')) in the database the birthday field is

Re: problem with date() and $form-input() when type = date

2007-08-28 Thread DragonI
Here's something you should look at ADOdb Date Time Library, http://phplens.com/phpeverywhere/adodb_date_library. PHP native date functions use integer timestamps for computations. Because of this, dates are restricted to the years 1901-2038 on Unix and 1970-2038 on Windows due to integer

1.2 using scaffolding, problem with date fields in view

2007-05-28 Thread [EMAIL PROTECTED]
Hi All, Probably a basic question, but I could not find anything in the archives nor on google. I am using scaffolding with a model that has some date fields in the database. Using 1.1 it displayed a '-00-00' date in the db as an 'empty' date. But now, using 1.2, it persists on 1st January

problem with date format

2007-02-14 Thread vidya
Hai, I have echo $html-input('Project/start_date') statement to enter the date. I can't save the date unless it is entered in the format - mm-dd. Please help me to solve this problem. Thanks, Vidya. --~--~-~--~~~---~--~~ You received this message because

Re: problem with date format

2007-02-14 Thread Chris Hartjes
On 2/14/07, vidya [EMAIL PROTECTED] wrote: Hai, I have echo $html-input('Project/start_date') statement to enter the date. I can't save the date unless it is entered in the format - mm-dd. Please help me to solve this problem. Thanks, Vidya. Why can't you alter the date before you

Re: problem with date format

2007-02-14 Thread djiize
maybe try the dateTimeOptionTag in Html helper, it prints 3 select box or if you use the new Form helper, $form-input will print date select box if your DB field is DATETIME or like On 14 fév, 14:12, Chris Hartjes [EMAIL PROTECTED] wrote: On 2/14/07, vidya [EMAIL PROTECTED] wrote: Hai,