This is a simple Wrapper Widget for the jQuery UI MultiSelect Widget by Eric Hynds.
Details about the widget can be found here.
A Demo of the JQuery widget can be found here.
Tested with Yii 1.1.8.
Extract the contents of the zip file directly into the protected/extensions/ folder of your Yii application.
model and dropDownAttribute ¶Now you can use the widget in your view file, for example like this:
$data= CHtml::listData(Color::model()->findAll(), 'ID', 'Name'); $this->widget('ext.EchMultiselect.EchMultiselect', array( 'model' => $model, 'dropDownAttribute' => 'color', 'data' => $data, 'dropDownHtmlOptions'=> array( 'style'=>'width:378px;', ), ));
This Yii widget creates a 'drop down list' with the given data and applies the JQuery widget to it, which turns the ordinary HTML select control into an elegant MultiSelect list of checkboxes with themeroller support.
To avoid confusion: I refer to the initial select element (that is subsequently hidden) as the 'drop down list'; and to the eventual input element created by the JQuery Widget as the 'MultiSelect list'.
The provided 'dropDownHtmlOptions' will be adopted by the MultiSelect list. If you for example provide a style for the drop down list, it will also applied to the resulting MiltiSelect list.
The drop down list will be hidden directly after it is created: I placed a Javascript code to hide the element directly after it, to prevent it from being displayed while the page is loading, only to be hidden after the page has been loaded (as suggested here). I truly dislike that appearing/disappearing on page load, so I didn'd wait for the MultiSelect widget to hide the drop down list.
Note: You could also hide the drop down list by adding the style display:none to the dropDownHtmlOptions. But hiding it via JS-Code provides backward compatibility: if the user has JS disabled, multiselect will not work, but the original select element will stay visible.
name and value ¶$colors = array('red','yellow','orange','black','green','blue'); $this->widget('ext.EchMultiselect.EchMultiselect', array( 'name'=>'colors[]', 'data'=>$colors, 'value'=>array(0,3), 'dropDownHtmlOptions'=> array( 'class'=>'span-10', 'id'=>'colors', ) ));
Here, name is the name of the drop down list. This must be set if model and dropDownAttribute are not set.value contains the pre-selected input value(s). In this case, 'red' and 'yellow' will be pre-selected by default. value is used only if model is not set.
If you select red, green, blue and submit, $_POST['colors'] will be an array containing the selected values, like: Array([0] => 0,[1] => 4, [2] => 5).
If model and dropDownAttribute are specified, they are used to generate the name and id of the drop down list. Note that if name is specified in addition, it overrides the automatically generated name. Similarly, if id is specified in the dropDownHtmlOptions, it overrides the generated id.
CGridView ¶The following example was provided by jeremy (see comments)
$this->widget('zii.widgets.grid.CGridView', array( .... 'columns' => array ( 'firstColumn', 'secondColumn', // use EchMultiselect for the next column array ( 'name'=>'thirdColumn', 'filter'=> $this->widget('ext.EchMultiselect.EchMultiselect', array( 'model' => $model, 'dropDownAttribute' => 'thirdColumn', 'data' => $colors, 'options' => array('buttonWidth' => 80, 'ajaxRefresh' => true), ), true // capture output; needed so the widget displays inside the grid ), ), ));
By setting 'ajaxRefresh'=>true, we indicate that the widget should be 'refreshed' after every ajax request that occurs on the current page.
options and filterOptions ¶You can provide optional parameters for the JQuery widget, if you want to change their default settings. Here's an example:
$data= CHtml::listData(Color::model()->findAll(), 'ID', 'Name'); $this->widget('ext.EchMultiselect.EchMultiselect', array( 'model' => $model, 'dropDownAttribute' => 'color', 'data' => $data, 'dropDownHtmlOptions'=> array( 'style'=>'width:378px;', ), 'options' => array( 'header'=> Yii::t('EchMultiSelect.EchMultiSelect','Choose an Option!'), 'minWidth'=>350, 'position'=>array('my'=>'left bottom', 'at'=>'left top'), 'filter'=>true, ), 'filterOptions'=> array( 'width'=>150, ), ));
Now the default “check all”, “uncheck all”, and “close” links in the header will be replaced with the specified text 'Choose an Option!, the widget will have a minimum width of 350px (instead of the default 225px), and the filter plugin will be applied.
Details about the available 'options' and 'filterOptions' for the jQuery UI MultiSelect Widget can be found on the Project page. Here's a list of the options and their default values for quick reference:
// 'options': 'header'=> true, 'height'=>175, 'minWidth'=>225, 'position'=>'', 'checkAllText' => Yii::t('EchMultiSelect.EchMultiSelect','Check all'), 'uncheckAllText' => Yii::t('EchMultiSelect.EchMultiSelect','Uncheck all'), 'selectedText' =>Yii::t('EchMultiSelect.EchMultiSelect','# selected'), 'selectedList'=>false, 'show'=>'', 'hide'=>'', 'autoOpen'=>false, 'noneSelectedText'=>'-- ' . Yii::t('EchMultiSelect.EchMultiSelect','Select Options') . ' --', 'multiple'=>true, 'classes'=>'', 'filter'=>false, // 'filterOptions': 'label' => Yii::t('EchMultiSelect.EchMultiSelect','Filter:'), 'width'=>100, 'placeholder'=>Yii::t('EchMultiSelect.EchMultiSelect','Enter keywords'), 'autoReset'=>false,
The filter plugin is disabled by default. To enable it, you have to set the filter attribute to true. The filterOptions will have no effect, if filter is set to false, i.e. the filter plugin is disabled.
Note that the default options are already translated with Yii::t() where necessary.
For details about the position option see the jQuery page for the Position utility. The default position of the Multiselect list array('my'=>'left top', 'at'=>'left bottom').
import widgets in config file to simplify calls ¶As an alternative, you can import the path of your widgets in your config file protected/config/main.php:
'import'=>array( ... 'ext.EchMultiselect.*', ... ),
Note that ext is short for application.extensions. Now you can call this widget (and any other widgets you may have placed under extensions/widgets/ ) with only its name, without specifying its path, i.e. like this:
$this->widget('EchMultiselect',...);
ajaxRefresh and buttonWidth options). Thanks to jeremy for providing the code!EchMultiSelect/messages.EchMultiSelect directory. That is: only directory structure changed. No changes in the code! (Reason of the change: The contents of the zip file are often extracted directly into the extensions directory, which resulted in the need to call the widget with $this->widget('ext.widgets.EchMultiselect.EchMultiselect', array(...);)protected/extensions/widgets/ directory,
the widget file EchMultiSelect.php will be located within the folder 'EchMultiSelect' (take a look at the file structure). So the path to this widget-file will be protected/extensions/widgets/EchMultiselect/EchMultiSelect.php. Therefore you will need to call the widget with:$this->widget('ext.widgets.EchMultiselect.EchMultiselect', array(...));
EchMultiSelect.EchMultiSelect into the protected/extensions/widgets/ directory of your application, you can use the widget as intended with: $this->widget('ext.widgets.EchMultiselect', array(...));
Total 17 comments
I was getting
Alias "ext.EchMultiSelect.EchMultiselect" is invalid. Make sure it points to an existing PHP file and the file is readable.
Just find out that there is a wrong alias in the examples.
It's
ext.EchMultiSelect.EchMultiselect
and should be
ext.EchMultiSelect.EchMultiSelect
------------------------------------------^ with capital S on last Select word
If you're having problems in Yii 1.1.13 (which includes jQueryUI 1.9.2), try this:
* upgrade assets/jquery.multiselect.js to multiselect v1.13
(from the author's site: http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/)
* in assets/jquery.multiselect.js, make the following changes:
- in destroy(), comment-out
//$.Widget.prototype.destroy.call( this );
- in _setOption(), comment-out
//$.Widget.prototype._setOption.apply( this, arguments );
If js errors, download the updated version of jquery.multiselect.js (http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/)
@Sukhwinder: I really don't know what the problem could be and don't have the required system (debian+chrome) to test. It seems to be a compatiblity problem; maybe the jQuery plugin requires things that are not included in your system..?
@Chris Backhouse: Thanks for sharing the issue and its underlying reasons.
Hi, I'm just trying out your extension and have found that with the following scenario the wrong values are posted.
Form load, specify one entry of the list as pre-selected (eg: 'value'=>array(0) )
Post -> array OK
Click the previously selected entry (unselect)
POST -> same as first post, ie: previously selected entry is still selected. You would expect an empty array.
It looks as though this could be a problem with the jQuery plugin rather than your extension....any ideas?
UPDATE: When no options are selected it returns an empty string which is not returned by the jQuery(form).serialize() function. Therefore this is not passed onto any form submit. Subsequently it appears as though $.fn.yiiGridView.update must cache previous values and, as the multi-select variable is not defined, it is not getting re-initialised and the previous value is being POSTED to the controller action.
Hi i followed your instruction to use this extension, but facing following issues: 1. Old drop down list still showing on page 2. When i open Multi Select List, it opens, i can check/Uncheck, but it is not closing , i have to reload the page. 3. It is opening in black and white colors, no hover effect
PS Im using chrome, and my OS is Ubuntu 12.04
Thanks
Thank you so much for your contribution!! I wanted to do this myself for some time now, but didn't have the opportunity. I implemented your suggestion just now, it works perfectly.
Thanks again, this is very much appreciated! Do you mind if I incorporate this into the extension, with your comments?
Here are the steps taken to make this very useful widget work as a 'filter' for CGridView.
The default behavior of CGridView is to do sorting/pagination/filtering in Ajax mode. After each ajax response, portions of the HTML response are used to update the grid. In this case the multi-select widget goes away and the default drop-down is displayed gain. To fix this, the caller should pass an additional option to indicate that it will be using ajax refresh, as follows:
at the end of run(), add the following logic:
Usage from within CGridView:
notice the new 'buttonWidth' option. This is because my Grid layout is extremely tight. I need the multi-select buttons to be as narrow as possible, but the drop-down menus to be wider (to show the full description). The default behavior does not support this.
implementation of 'buttonWidth' option in /assets/jquery.multiselect.js:
instead of hiding the default drop-down with jQuery .hide(), I suggest:
In Multiselect mode, if there is a single option, it doesn't work. The checkbox gets checked but it doesn't show "1 selected". Whereas it works with jquery ui demo at
http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/
Regards Deepti
very nice widget:))
thanks, fixed!
Hi maxxer,
please note the following two important points:
datahas to be an associative array. It will be used to generate the dropdown list.dropDownAttributehas to be an array of values; a one deminesional array that contains the preselected values to be specific.In your example you set
This is an associative array that can be used as the 'data' to populate the dropdown list. It can not be used as the 'dropDownAttribute'.
I don't know what
MyModel::myDropDownListMethod()is doing/returning, so I cannot say if there lies a problem.In your Controller Action, there shoud be something like this:
Then your view file should look like:
We discussed this topic of preselected values here in the forum, you might want to take a look. There are a few good examples that shoud make it clearer...
Best regards...
hi. I cannot preselect entries. I'm using the widget in a _search.php form, where I use a modified advanced search. In the action displaying the form I added something like this:
the widget is then defined this way:
but there's always NO item preselected.
Hi bonnie,
You just have to extract the files under
protected/extensions/widgets/. Those file paths show only where the files should be located after the extraction.If you call the widget with
then you don't need to include/import the files in your config file. Because you are specifying the exact path with
ext.widgets.EchMultiSelect.I hope it's clearer now?
Hi, c@cba nice extension but can you specify exactly which file should this information included.
What would you think about the following changes/additions to this widget:
Does someting speak against (one of) these changes?
Leave a comment
Please login to leave your comment.