123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <?php
- /**
- * CJuiSliderInput class file.
- *
- * @author Sebastian Thierer <sebathi@gmail.com>
- * @link http://www.yiiframework.com/
- * @copyright 2008-2013 Yii Software LLC
- * @license http://www.yiiframework.com/license/
- */
- Yii::import('zii.widgets.jui.CJuiInputWidget');
- /**
- * CJuiSliderInput displays a slider. It can be used in forms and post its value.
- *
- * CJuiSlider encapsulates the {@link http://jqueryui.com/slider/ JUI
- * slider} plugin.
- *
- * To use this widget, you may insert the following code in a view:
- * <pre>
- * $this->widget('zii.widgets.jui.CJuiSliderInput',array(
- * 'name'=>'rate',
- * 'value'=>37,
- * // additional javascript options for the slider plugin
- * 'options'=>array(
- * 'min'=>10,
- * 'max'=>50,
- * ),
- * 'htmlOptions'=>array(
- * 'style'=>'height:20px;',
- * ),
- * ));
- * </pre>
- *
- * The widget can also be used in range mode which uses 2 sliders to set a range.
- * In this mode, {@link attribute} and {@link maxAttribute} will define the attribute
- * names for the minimum and maximum range values, respectively. For example:
- *
- * <pre>
- * $this->widget('zii.widgets.jui.CJuiSliderInput',array(
- * 'model'=>$model,
- * 'attribute'=>'timeMin',
- * 'maxAttribute'=>'timeMax',
- * // additional javascript options for the slider plugin
- * 'options'=>array(
- * 'range'=>true,
- * 'min'=>0,
- * 'max'=>24,
- * ),
- * ));
- * </pre>
- *
- * If you need to use the slider event, please change the event value for 'stop' or 'change'.
- *
- * By configuring the {@link options} property, you may specify the options
- * that need to be passed to the JUI slider plugin. Please refer to
- * the {@link http://api.jqueryui.com/slider/ JUI Slider API} documentation
- * for possible options (name-value pairs) and
- * {@link http://jqueryui.com/slider/ JUI Slider page} for general
- * description and demo.
- *
- * @author Sebastian Thierer <sebathi@gmail.com>
- * @package zii.widgets.jui
- * @since 1.1
- */
- class CJuiSliderInput extends CJuiInputWidget
- {
- /**
- * @var string the name of the container element that contains the slider. Defaults to 'div'.
- */
- public $tagName='div';
- /**
- * @var integer determines the value of the slider, if there's only one handle. If there is more than one handle,
- * determines the value of the first handle.
- */
- public $value;
- /**
- * @var string the name of the event where the input will be attached to the slider. It
- * can be 'slide', 'stop' or 'change'. If you want to use 'slide' event change $event property to 'change'.
- */
- public $event='slide';
- /**
- * @var string name of attribute for max value if slider is used in range mode.
- */
- public $maxAttribute;
- /**
- * @var string the input name to be used for max value attribute when using slider in range mode.
- * This must be set in case {@link model} isn't used.
- * @since 1.1.14
- */
- public $maxName;
- /**
- * @var integer determines the max value of the slider, if there's two handles (range mode). Ignored if there's
- * only one handle.
- * @since 1.1.14
- */
- public $maxValue;
- /**
- * @var string the suffix to be appended to the ID of the max value input element
- * when slider used in range mode.
- * @since 1.1.14
- */
- public $maxIdSuffix='_end';
- /**
- * Run this widget.
- * This method registers necessary javascript and renders the needed HTML code.
- */
- public function run()
- {
- list($name,$id)=$this->resolveNameID();
- if(isset($this->htmlOptions['id']))
- $id=$this->htmlOptions['id'];
- else
- $this->htmlOptions['id']=$id;
- $isRange=isset($this->options['range']) && $this->options['range'] &&
- $this->options['range']!=='max' && $this->options['range']!=='min';
- if($this->hasModel())
- {
- $attribute=$this->attribute;
- if($isRange)
- {
- $options=$this->htmlOptions;
- echo CHtml::activeHiddenField($this->model,$this->attribute,$options);
- $options['id'].=$this->maxIdSuffix;
- echo CHtml::activeHiddenField($this->model,$this->maxAttribute,$options);
- $maxAttribute=$this->maxAttribute;
- $this->options['values']=array($this->model->$attribute,$this->model->$maxAttribute);
- }
- else
- {
- echo CHtml::activeHiddenField($this->model,$this->attribute,$this->htmlOptions);
- $this->options['value']=$this->model->$attribute;
- }
- }
- else
- {
- if($isRange)
- {
- list($maxName,$maxId)=$this->resolveNameID('maxName','maxAttribute');
- $options=$this->htmlOptions;
- echo CHtml::hiddenField($name,$this->value,$options);
- $options['id'].=$this->maxIdSuffix;
- echo CHtml::hiddenField($maxName,$this->maxValue,$options);
- $this->options['values']=array($this->value,$this->maxValue);
- }
- else
- {
- echo CHtml::hiddenField($name,$this->value,$this->htmlOptions);
- if($this->value!==null)
- $this->options['value']=$this->value;
- }
- }
- $idHidden=$this->htmlOptions['id'];
- $this->htmlOptions['id']=$idHidden.'_slider';
- echo CHtml::tag($this->tagName,$this->htmlOptions,'');
- $this->options[$this->event]=$isRange
- ? new CJavaScriptExpression("function(e,ui){ v=ui.values; jQuery('#{$idHidden}').val(v[0]); jQuery('#{$idHidden}{$this->maxIdSuffix}').val(v[1]); }")
- : new CJavaScriptExpression("function(event, ui) { jQuery('#{$idHidden}').val(ui.value); }");
- $options=CJavaScript::encode($this->options);
- Yii::app()->getClientScript()->registerScript(__CLASS__.'#'.$id,"jQuery('#{$id}_slider').slider($options);");
- }
- }
|