CJuiSortable

优质
小牛编辑
135浏览
2023-12-01
所有包 | 属性 | 方法
zii.widgets.jui
继承class CJuiSortable » CJuiWidget » CWidget » CBaseController » CComponent
源自1.1
版本$Id: CJuiSortable.php 3217 2011-05-12 23:59:50Z alexander.makarow $
源码framework/zii/widgets/jui/CJuiSortable.php
CJuiSortable用鼠标拖动选定的元素排序。

CJuiSortable封装了JUI Sortable 插件。

使用这个部件,你可以在视图里面插入以下代码:
$this->widget('zii.widgets.jui.CJuiSortable', array(  'items'=>array(      'id1'=>'Item 1',      'id2'=>'Item 2',      'id3'=>'Item 3',  ),  // additional javascript options for the accordion plugin  'options'=>array(      'delay'=>'300',  ),
));


通过配置options属性, 你可以指定需要传递给JUI Sortable插件的选项。 如果需要选择(name-value pairs), 请参阅JUI Sortable说明。

如果你在代码的任何位置使用javascript代码,请添加“js:” 在js代码的定义的开始,Yii的开始将使用这个字符串作为js代码。

公共属性

隐藏继承属性

属性类型描述定义在
actionPrefixstringactions的ID的前缀。 当微件在CController::actions中声明了 动作提供者,可以为其动作的ID指定前缀以区别 于别的微件或控制器。当微件用于控制器 的视图中时,必须配置同样的前缀。CWidget
controllerCController返回此微件所属的控制器。CWidget
cssFilemixed主题的CSS文件名。默认是‘jquery-ui.CJuiWidget
htmlOptionsarrayJUI组件中HTML标签的属性设置。CJuiWidget
idstring返回此微件的ID。如果需要的话,将生产一个新的ID并将其返回。CWidget
itemTemplatestring用于生成每一个可拖动排序项的模板。 标记“{content}”在模板中将被用item内容替换, 同时“{id}”将被用此项ID替换。CJuiSortable
itemsarray可拖动排序项的列表(id=>item content)。 请注意,这个项的内容被不被HTML-encoded。CJuiSortable
optionsarraythe 初始的JavaScript需要传递给JUI插件的选项。CJuiWidget
ownerCBaseController返回此微件的所有者或创建者。CWidget
scriptFilemixed主要JUI的JavaScript的文件名。默认是‘jquery-ui.CJuiWidget
scriptUrlstring包含所有JUI JavaScript文件的根目录。 如果没有设置这个属性(默认),Yii will publish the JUI package included in the zii release and use that to infer the root script URL.CJuiWidget
skinmixed微件使用的皮肤的名称。默认为“default”。 如果此属性设置为false,微件将不会有皮肤被使用。CWidget
tagNamestring包含所有items的容器元素的名称。默认是‘ul’。CJuiSortable
themestringJUI主题的名字。默认是‘base’。确保在themeUrl下有这样一个目录, 其名称是这个属性的值相同(区分大小写)。CJuiWidget
themeUrlstring包含所有JUI的主题文件夹的根目录。 如果没有设置这个属性(默认), Yii will publish the JUI package included in the zii release and use that to infer the root theme URL.CJuiWidget
viewPathstring返回包含此微件所需的视图文件的路径。CWidget

公共方法

隐藏继承方法

方法描述定义在
__call()如果类中没有调的方法名,则调用这个方法。CComponent
__construct()构造器。CWidget
__get()返回一个属性值、一个事件处理程序列表或一个行为名称。CComponent
__isset()检查一个属性是否为null。CComponent
__set()设置一个组件的属性值。CComponent
__unset()设置一个组件的属性为null。CComponent
actions()返回此widget使用的动作的列表。CWidget
asa()返回这个名字的行为对象。CComponent
attachBehavior()附加一个行为到组件。CComponent
attachBehaviors()附加一个行为列表到组件。CComponent
attachEventHandler()为事件附加一个事件处理程序。CComponent
beginCache()Begins fragment caching.CBaseController
beginClip()Begins recording a clip.CBaseController
beginContent()Begins the rendering of content that is to be decorated by the specified view.CBaseController
beginWidget()Creates a widget and executes it.CBaseController
canGetProperty()确定属性是否可读。CComponent
canSetProperty()确定属性是否可写。CComponent
createWidget()Creates a widget and initializes it.CBaseController
detachBehavior()从组件中分离一个行为。CComponent
detachBehaviors()从组件中分离所有行为。CComponent
detachEventHandler()分离一个存在的事件处理程序。CComponent
disableBehavior()禁用一个附加行为。CComponent
disableBehaviors()禁用组件附加的所有行为。CComponent
enableBehavior()启用一个附加行为。CComponent
enableBehaviors()启用组件附加的所有行为。CComponent
endCache()Ends fragment caching.CBaseController
endClip()Ends recording a clip.CBaseController
endContent()Ends the rendering of content.CBaseController
endWidget()Ends the execution of the named widget.CBaseController
evaluateExpression()计算一个PHP表达式,或根据组件上下文执行回调。CComponent
getController()返回此微件所属的控制器。CWidget
getEventHandlers()返回一个事件的附加处理程序列表。CComponent
getId()返回此微件的ID。如果需要的话,将生产一个新的ID并将其返回。CWidget
getOwner()返回此微件的所有者或创建者。CWidget
getViewFile()根据视图名查找视图文件。CWidget
getViewPath()返回包含此微件所需的视图文件的路径。CWidget
hasEvent()确定一个事件是否定义。CComponent
hasEventHandler()检查事件是否有附加的处理程序。CComponent
hasProperty()确定属性是否被定义。CComponent
init()初始化这个组件。CJuiWidget
raiseEvent()发起一个事件。CComponent
render()渲染一个视图。CWidget
renderFile()Renders a view file.CBaseController
renderInternal()Renders a view file.CBaseController
run()运行这个部件。CJuiSortable
setId()设置此微件的ID。CWidget
widget()Creates a widget and executes it.CBaseController

受保护方法

隐藏继承方法

方法描述定义在
registerCoreScripts()注册核心的脚本文件。CJuiWidget
registerScriptFile()注册一个JavaScript文件在scriptUrl下。CJuiWidget
resolvePackagePath()确定JUI包安装路径。CJuiWidget

属性详细

itemTemplate 属性 public string $itemTemplate;

用于生成每一个可拖动排序项的模板。 标记“{content}”在模板中将被用item内容替换, 同时“{id}”将被用此项ID替换。

items 属性 public array $items;

可拖动排序项的列表(id=>item content)。 请注意,这个项的内容被不被HTML-encoded。

tagName 属性 public string $tagName;

包含所有items的容器元素的名称。默认是‘ul’。

方法详细

run() 方法
public void run()
源码: framework/zii/widgets/jui/CJuiSortable.php#69 (显示) publicfunctionrun()
{
$id=$this->getId();
if(isset($this->htmlOptions['id']))
$id=$this->htmlOptions['id'];
else
$this->htmlOptions['id']=$id;

$options=empty($this->options)?'':CJavaScript::encode($this->options);
Yii::app()->getClientScript()->registerScript(__CLASS__.'#'.$id,"jQuery('#{$id}').sortable({$options});");

echoCHtml::openTag($this->tagName,$this->htmlOptions)."n";
foreach($this->itemsas$id=>$content)
{
echostrtr($this->itemTemplate,array('{id}'=>$id,'{content}'=>$content))."n";
}
echoCHtml::closeTag($this->tagName);
}

运行这个部件。 这个方法注册必要的javascript并渲染相应的HTML代码。