Wallogit.com
2017 © Pedro Peláez
ESelect2 is a widget extension for Yii framework. This extension is a wrapper for Select2 Jquery plugin (https://github.com/ivaynberg/select2).
ESelect2 is a widget extension for Yii framework. This extension is a wrapper for Select2 Jquery plugin (https://github.com/ivaynberg/select2)., (*1)
$this->widget('ext.select2.ESelect2', array(
'name' => 'selectInput',
'data' => array(
0 => 'Nol',
1 => 'Satu',
2 => 'Dua',
)
));
$this->widget('ext.select2.ESelect2', array(
'model' => $model,
'attribute' => 'attrName',
'data' => array(
0 => 'Nol',
1 => 'Satu',
2 => 'Dua',
),
));
$tags = array('Satu', 'Dua', 'Tiga');
echo CHtml::textField('test', '', array('id' => 'test'));
$this->widget('ext.select2.ESelect2', array(
'selector' => '#test',
'options' => array(
'tags' => $tags,
),
));
optgroup
$data = array(
'one' => array(
'1' => 'Satu',
'2' => 'Dua',
'3' => 'Tiga',
),
'two' => array(
'4' => 'Sidji',
'5' => 'Loro',
'6' => 'Telu',
),
'three' => array(
'7' => 'Hiji',
'8' => 'Dua',
'9' => 'Tilu',
),
);
$this->widget('ext.select2.ESelect2', array(
'name' => 'testing',
'data' => $data,
));
$data = array(
'1' => 'Satu',
'2' => 'Dua',
'3' => 'Tiga',
);
$this->widget('ext.select2.ESelect2', array(
'name' => 'ajebajeb',
'data' => $data,
'htmlOptions' => array(
'multiple' => 'multiple',
),
));
$this->widget('ext.select2.ESelect2', array(
'name' => 'asik2x',
'data' => $data,
'options' => array(
'placeholder' => Yii::t('select2', 'Keren ya?'),
'allowClear' => true,
),
));
echo CHtml::textField('movieSearch', '', array('class' => 'span5'));
$this->widget('ext.select2.ESelect2', array(
'selector' => '#movieSearch',
'options' => array(
'placeholder' => 'Search a movie',
'minimumInputLength' => 1,
'ajax' => array(
'url' => 'http://api.rottentomatoes.com/api/public/v1.0/movies.json',
'dataType' => 'jsonp',
'data' => 'js: function(term,page) {
return {
q: term,
page_limit: 10,
apikey: "e5mnmyr86jzb9dhae3ksgd73" // Please create your own key!
};
}',
'results' => 'js: function(data,page){
return {results: data.movies};
}',
),
'formatResult' => 'js:function(movie){
var markup = "
|
" + movie.title + " ";
if (movie.critics_consensus !== undefined) {
markup += "" + movie.critics_consensus + " ";
}
else if (movie.synopsis !== undefined) {
markup += "" + movie.synopsis + " ";
}
markup += " |