Home php教程 php手册 Yii Framework 开发教程Zii组件-Selectable示例

Yii Framework 开发教程Zii组件-Selectable示例

Jun 13, 2016 am 10:53 AM
framework yii Can develop Tutorial Example components

CJuiSelectable可以显示一个列表,列表的每个项支持Select事件,它封装了 JUI Selectable插件,其基本用法如下:

 

 

[php]  

Yii::app()->clientScript->registerCss('selectable',"  

#selectable {list-style-type: none; margin: 0; padding: 0; width: 60%;}  

#selectable li {margin: 2px; padding: 4px; border: 1px solid #e3e3e3; background: #f7f7f7}  

#selectable .ui-selecting { border: 1px solid #fad42e; }  

#selectable .ui-selected { border: 1px solid #fad42e; background: #fcefa1;}  

#select-result {margin: 0 0 10px 2px; }  

", 'screen', CClientScript::POS_HEAD);  

?>  

  

 

  

none
 

  

$this->widget('zii.widgets.jui.CJuiSelectable',array(  

    'id'=>'selectable',  

    'items'=>array(  

                'id1'=>'Item 1',  

                'id2'=>'Item 2',  

                'id3'=>'Item 3'  

                ),  

            'options'=>array(  

                'stop'=>'js: function(event,ui){  

            var result = $("#select-result").emptyempty();  

            $(".ui-selected", this).each(function(){  

                var index = $("#selectable li").index(this);  

                result.append(" #" + (index + 1));  

            });  

        }'  

                )  

            ));  

?>  

 

Yii::app()->clientScript->registerCss('selectable',"

#selectable {list-style-type: none; margin: 0; padding: 0; width: 60%;}

#selectable li {margin: 2px; padding: 4px; border: 1px solid #e3e3e3; background: #f7f7f7}

#selectable .ui-selecting { border: 1px solid #fad42e; }

#selectable .ui-selected { border: 1px solid #fad42e; background: #fcefa1;}

#select-result {margin: 0 0 10px 2px; }

", 'screen', CClientScript::POS_HEAD);

?>www.2cto.com

 

 

none

 

$this->widget('zii.widgets.jui.CJuiSelectable',array(

'id'=>'selectable',

'items'=>array(

'id1'=>'Item 1',

'id2'=>'Item 2',

'id3'=>'Item 3'

),

'options'=>array(

'stop'=>'js: function(event,ui){

var result = $("#select-result").empty();

$(".ui-selected", this).each(function(){

var index = $("#selectable li").index(this);

result.append(" #" + (index + 1));

});

}'

)

));

?>

 

 

 

使用Javascipts 来响应选择事件。

 

 

 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Tutorial on how to use Dewu Tutorial on how to use Dewu Mar 21, 2024 pm 01:40 PM

Tutorial on how to use Dewu

Four recommended AI-assisted programming tools Four recommended AI-assisted programming tools Apr 22, 2024 pm 05:34 PM

Four recommended AI-assisted programming tools

Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Apr 07, 2024 am 09:10 AM

Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent

Learn how to develop mobile applications using Go language Learn how to develop mobile applications using Go language Mar 28, 2024 pm 10:00 PM

Learn how to develop mobile applications using Go language

Tutorial on how to turn off the payment sound on WeChat Tutorial on how to turn off the payment sound on WeChat Mar 26, 2024 am 08:30 AM

Tutorial on how to turn off the payment sound on WeChat

Experts teach you! The Correct Way to Cut Long Pictures on Huawei Mobile Phones Experts teach you! The Correct Way to Cut Long Pictures on Huawei Mobile Phones Mar 22, 2024 pm 12:21 PM

Experts teach you! The Correct Way to Cut Long Pictures on Huawei Mobile Phones

Go language indentation specifications and examples Go language indentation specifications and examples Mar 22, 2024 pm 09:33 PM

Go language indentation specifications and examples

PHP Tutorial: How to convert int type to string PHP Tutorial: How to convert int type to string Mar 27, 2024 pm 06:03 PM

PHP Tutorial: How to convert int type to string

See all articles