Listdata Select2 Problem

Hi everybody

While typing anything to select2, it says me no matches found. But i want to write something and when press enter add what i write to select2. My problem is like that:

Also my codes:





<div class="row">

		<?php echo $form->labelEx($model,'kimden_id'); ?>

		<?php 

		   $this->widget('ext.select2.ESelect2',array(

		  'model'=>$model,

		  'id'=>'kimden_id',

		  'name'=>'kimden_id',	

		  'data'=>CHtml::listData(Birimler::model()->findAll(), 'id', 'birim_adi'),

		  'htmlOptions'=>array('style'=>'color:black;','multiple'=>'multiple',),

		)); 


                ?>

	

		<?php echo $form->error($model,'kimden_id'); ?>

	</div>	




How can i do this :(

This is extension related question, pehaps you will get better support on Select2 extension page?

Also I have the same problem, do you’ve fixed?