Date And Datetime

I have been trying to get a date time entry working and I only get a date selection tool. I checked the source for AAFieldDateTime and found that its type is ‘date’ exactly the same as AAFieldDate. Is this correct? If so, how do I enter a time in a form?

Thanks,

Adrian

hi

why don’t you try using extension something as follows in your view

<?php Yii::import(‘application.extensions.CJuiDateTimePicker.CJuiDateTimePicker’);

&#036;this-&gt;widget('CJuiDateTimePicker',array(


    'model'=&gt;&#036;news, //Model object


    'attribute'=&gt;'eventDate', //attribute name


            'mode'=&gt;'datetime' //use &quot;time&quot;,&quot;date&quot; or &quot;datetime&quot; (default)


    'options'=&gt;array() // jquery plugin options


));

?>

regards