我正在使用jeasyui插件的comboTree功能。任何人都可以帮助我如何使用该插件的tagBox功能,以显示选定的树节点?
<div class="form-group">
<label class="col-md-4 col-sm-3 control-label">Category</label>
<div class="col-md-8 col-sm-9">
<input type="text" class="form-control easyui-combotree easyui-tagbox" name="product_category" id="cc" placeholder="Ex. : MTR red chilli">
</div>
</div>
查询
$('#cc').combotree({
url: 'tree_data1.json',
method: 'get',
cascadeCheck: false,
multiple: true,
required: true,
prompt: 'Select Categories'
});
现在我想用它来使用tagTree功能。我该怎么办?
comboTree插件的链接是
https://www.jeasyui.com/demo/main/index.php?plugin=ComboTree&theme=bootstrap&dir=ltr&pitem=&sort=
我想将所选项目的视图作为tagTree中的标记类型。