Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have problem to set value of checkout date after calendar date is clicked, here is the code. I try to fill value of check_out_date by give function onSelect,but nothing changes to target input value. Can anyone help me to give a soultion

here the piece of code

<div class="row">
            <?php echo $form->labelEx($model,'check_in_date'); ?>
            <?php //echo $form->textField($model,'check_in_date');
            $this->widget('zii.widgets.jui.CJuiDatePicker',array(

                            'name'=>'Reservation[check_in_date]',
                            'value' => ($model->check_in_date)?$model->check_in_date:date('m/d/Y'),
                            'options'=>array(
                                 'dateFormat'=>'mm/dd/yy',
                                 'disabled'=>'true',
                                 'showAnim'=>'fold',
                                 //'beforeShowDay' => 'js:$.datepicker.noWeekends',
                                 'onSelect' => 'js:function() {
                                    $("#Reservation_check_out_date").val("04/23/2011");/* to automatically assign check out date input value*/
                                    }',
                                'minDate'=>'0',
                                'changeMonth'=>true,
                                'changeYear'=>true,
                            ),
                            'htmlOptions'=>array(
                                    'style'=>'height:20px;'
                            ),
                    ));
            ?>
            <?php echo $form->error($model,'check_in_date'); ?>
    </div>

    <div class="row">
            <?php echo $form->labelEx($model,'check_out_date'); ?>
            <?php //echo $form->textField($model,'check_out_date');
            $this->widget('zii.widgets.jui.CJuiDatePicker',array(
                            /*'model'=>$model,
                            'attribute'=>'check_out_date',*/
                            'name'=>'Resevation[check_out_date]',
                            'value' => ($model->check_out_date)?$model->check_in_date:date('m/d/Y', strtotime("+1 day")),

                            'options'=>array(
                                'dateFormat'=>'mm/dd/yy',
                                'showAnim'=>'fade',  
                                'changeMonth' => true,
                                'changeYear' => true,
                                'showOn' => 'button',
                                'buttonImage' => Yii::app()->request->baseUrl . '/images/calendar.png',
                                'buttonImageOnly' => true,
                                'beforeShow' => 'js:function(){
                                    var selectedDate=$("#'.CHtml::activeId($model,'check_in_date').'").datepicker("getDate");
                                    selectedDate.setDate(selectedDate.getDate() + 1);
                                    $(this).datepicker("option","minDate",selectedDate);

                                    }'
                            ),
                            'htmlOptions'=>array('style'=>'font-size:0.8em','disabled'=>'disabled',),
                    ));
            ?>
            <?php echo $form->error($model,'check_out_date'); ?>
    </div>
share|improve this question
1  
I have to say thanks, I found my answer in your question :) +1!! – zladuric Mar 26 '12 at 17:49

1 Answer

Can you try:

'onSelect' => 'js:function() {$("#Reservation_check_out_date").setDate("04/23/2011");}',

jQuery UI doc: http://jqueryui.com/demos/datepicker/#method-setDate

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.