Tag Handler is a jQuery plugin used for managing tag-type metadata
Requirements ¶
requirements of using this extension (e.g. Yii 1.1 or above)...
Installation ¶
- Extract the release file under protected/extensions
Usage ¶
See the following code example:
$assigned = Contact::model()->Assigned($model->entryId)->findAll();
$available = Contact::model()->Available()->findAll();
$this->widget('ext.TagHandler.TagHandler', array(
'name'=>'Contact[List]',
'options'=>array(
//'getURL'=>$ajaxURL,
'assigned'=> $assigned,
'available'=> $available,
'autocomplete'=>true,
),
));
for get value and submit befor send data: ~~~ [javascript] $('#form_Id').submit(function() {
$('#Contact_List').val($("#Contact_List_0").tagHandler("getTags"));
return true;
});
##Resources
* [Try out a jquery demo](http://ioncache.github.io/Tag-Handler/)
##Donate
Want to say thanks for the time and efforts put on this project?
[Donate](http://dkr.co.ir/donate)
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.