This example shows how to format the tagbox values.
<div class="easyui-panel" style="width:100%;max-width:400px;padding:30px 60px;">
<input class="easyui-tagbox" value="Apple,Orange" label="Add a tag" style="width:100%" data-options="
tagFormatter: function(value, row){
return '[' + value + ']';
}
">
</div>