HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
basic.php
Go to the documentation of this file.
1 <?php // Basic usage of Select2 widget
2 $this->widget(
3  'bootstrap.widgets.TbSelect2',
4  array(
5  'asDropDownList' => false,
6  'name' => 'clevertech',
7  'options' => array(
8  'tags' => array('clever', 'is', 'better', 'clevertech'),
9  'placeholder' => 'type clever, or is, or just type!',
10  'width' => '40%',
11  'tokenSeparators' => array(',', ' ')
12  )
13  )
14 );
15 
16