yii中的CJuiDatePicker不起作用

时间:2016-03-13 10:43:59

标签: yii datepicker

在我的网络应用程序中,我想实现一个日期字段。为此我使用CJuiDatePicker。但对我来说,它没有显示日历。

我的代码是,

 $this->widget('zii.widgets.jui.CJuiDatePicker', array(
                        'name' => 'Employee[employee_joiningdate]',
                        'id' => 'Employee_employee_joiningdate',
                        'value' => Yii::app()->dateFormatter->format("d-M-y", strtotime($model->employee_joiningdate)),
                        'options' => array(`
                            'showAnim' => 'slide', //'slide','fold','slideDown','fadeIn','blind','bounce','clip','drop'
                            'showOtherMonths' => true, // Show Other month in jquery
                            'selectOtherMonths' => true, // Select Other month in jquery
                        ),
                        'htmlOptions' => array(
                            'class' => 'form-control'
                        ),
                    ));`

我做错了什么?

请帮助我....

提前致谢。

0 个答案:

没有答案