Configuration
| Name |
Type |
Description |
|---|---|---|
| store |
array |
Key/Value pairs for the available options. |
| width |
integer |
|
| height |
integer |
Additionally you can use every configuration property of Ext.ux.form.MultiSelect to customize the select widgetin editmode.
Example
<?php echo $this->multiselect("multiselect", array( "width" => 200, "height" => 100, "store" => array( array("value1", "Text 1"), array("value2", "Text 2"), array("value3", "Text 3"), array("value4", "Text 4"), ) )) ?>