Take a look at the automatic form elements in the CakePHP book at:
http://book.cakephp.org/#!/view/1390/Automagic-Form-Elements

It states that for a datetime column, as you have, the resulting form
field will contain:
day, month, year, hour, minute, and meridian selects

So it will not give you an opportunity to choose the seconds!

Unless someone else have other information, you probably have to make
your own version.
Enjoy,
   John

On Feb 19, 11:47 am, Tapan Kumar Thapa
<[email protected]> wrote:
> Hello Community,
>
> Can any one suggest any thing on this request?
>
> Regards
> Tapan Thapa
> India
>
> On Sat, Feb 19, 2011 at 11:06 AM, Tapan Kumar Thapa <
>
> [email protected]> wrote:
> > Hello Community,
>
> > I am using below code in my view to generate start date and end date. My
> > view is showing start and end date perfectly but without seconds value to
> > select.
>
> > Can you please suggest something to display and chose seconds as well?
>
> > <?php
> > echo $this->Form->create(array('controller' => 'users', 'action' =>
> > 'view'));
> > echo $this->Form->input('Start Date/Time', array(
> >     'type' => 'datetime',
> >     'dateFormat' => 'DMY',
> >     'minYear' => date('Y') - 1,
> >     'maxYear' => date('Y'),
> >     'timeFormat' => '24',
> >     'selected' => date('Y-m-d 0:00:s'),
> >     'attributes' => array(),
> >     'empty' => FALSE
> >         )
> > );
> > echo $this->Form->input('End Date/Time', array(
> >     'type' => 'datetime',
> >     'dateFormat' => 'DMY',
> >     'minYear' => date('Y') - 1,
> >     'maxYear' => date('Y'),
> >     'timeFormat' => '24',
> >     //'selected' => null,
> >     'selected' => date('Y-m-d H:i:s'),
> >     'attributes' => array(),
> >     'empty' => FALSE
> >         )
> > );
> > echo $this->Form->end('Search');
> > ?>
>
> > Regards
> > Tapan Thapa
> > India

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to