0

Yii アプリケーションでejuidatetimepickerを使用しています。その与える日付と時刻のピッカー。タイムピッカーのみが必要です.2つのオプションmode => 'time'timeOnly=>true. 動いていない。

以下のコードを見つけてください。

   $this->widget( 'application.extensions.timepicker.EJuiDateTimePicker', array(
 'model' => $model, // Your model   
 'attribute' => 'starttime', // Attribute for input
 //'mode'=>'time', //Not working Error Message is "Property "EJuiDateTimePicker.mode" is not defined. "
 //timeOnly -  Default: false - Hide the datepicker and only provide a time interface.
  'timeOnly' => true, // Not working Error Message is "Property "EJuiDateTimePicker.timeOnly" is not defined."

 'options' => array(
  'showOn'=>'focus',
  'timeFormat'=>'hh:mm:ss',         
  'showSecond'=>true,  
  //'timeOnly' => true, // Not working Error Message is "Property "EJuiDateTimePicker.timeOnly" is not defined."

  ) ,                                       
 'htmlOptions' => array(                    
  'autocomplete' => 'off',                  
  'size' => 10,                     
  'maxlength' => 10,                        
  ),                                        
 ));
4

1 に答える 1

3

オプションを見つけました。使用する必要があります

 'timePickerOnly' => 'true',

EJuiDateTimePicker.php をチェックインしました

于 2013-09-25T09:39:03.860 に答える