我需要在Gridview列中添加一个日期选择器


I need to add a datepicker in Gridview columns

[SOLVED]

我想要完成的是把一个日期选择器在gridview列和更改更新mysql表。

我已经得到了更新功能,我只需要帮助在列中添加日期选择器

答案:

'columns' =>array(
    array(
        'name'=>'due_date',
        'value'=>'$data->datePicker()',
        'filter'=>CHtml::activeDateField($model,'due_date',array('id'=>$id,'class'=>'form-control','data-id'=> $this->id)),     
        'type'=>'raw',
    ),
),

然后是模型中的datepicker函数

public function datePicker(){
    return CHtml::activeDateField($this,'due_date',array('id'=>$id,'class'=>'form-control updateableDate','data-id'=> $this->id));
}

有任何问题请随时提问

您可以使用以下代码:-

<div id="orderdiv">
            <?php
            $this->widget('zii.widgets.jui.CJuiDatePicker', array(
                            //'model' => $model,
                            'name'=>'test',
                            'attribute' => 'created',
                            'language' => 'en-AU',
                        'i18nScriptFile' => 'jquery.ui.datepicker-en.js',
                            'htmlOptions' => array(
                                'id' => 'created',
                                'size' => '10',
                            ),
                            'defaultOptions' => array(
                                //'showOn' => 'focus',
                                'dateFormat' => 'dd/mm/yy',
                                'showOtherMonths' => true,
                                'selectOtherMonths' => true,
                                'changeMonth' => true,
                                'changeYear' => true,
                                'showButtonPanel' => true,
                            )
                                ));
            ?>
</div>

试试这个代码:-

$this->widget('zii.widgets.grid.CGridView', array(
                'id'=>'orders-grid',
                'dataProvider'=>$model->search(),
                'filter'=>$model,
                'afterAjaxUpdate'=>"function(){jQuery('#due_date_search').datepicker({'dateFormat': 'yy-mm-dd'})}",
                'columns'=>array(
                    array(
                        'name' => 'due_date', 
                        'type' => 'raw', 
                        'filter'=>$this->widget('zii.widgets.jui.CJuiDatepicker', array('model'=>$model, 'attribute'=>'due_date', 'htmlOptions' => array('id' => 'due_date_search'), 'options' => array('dateFormat' => 'yy-mm-dd')), true)
                        ),
                ),
            ));