I'm using the dropdowntree control in Vuejs.
When the checkboxes are selected, the selected items are display in an oval with an "x" at the top of the control.
How do I keep the selected items from displaying at the top of the control?
I'd rather have the total number of items that are selected to display at the top of the control. Is this possible?
<dropdowntree
:data-source="myDataSource"
:autoClose="false"
:checkboxes="true"
:check-all="true"
:placeholder="'Select Items'"
dataTextField="text"
dataValueField="id"
v-model="selectedItemsList"
style="width: 500px;"
>
</dropdowntree>