I have implemented a drop down list as follows. i want to drag items from this list. :draggable="true" :dropzone="true"
doesn't seems to trigger this. Items cannot be dragged. How to achieve this? Thank you in advance
<kendo-dropdownlist v-model="dropdownlistValue":data-source="dataSourceArray" :data-text-field="'text'":data-value-field="'value'":filter="'contains'" :draggable="true" :dropzone="true"></kendo-dropdownlist>dataSourceArray:any []=[{ text: 'Small', value: '1' }, { text: 'Medium', value: '2' }, { text: 'Large', value: '3' }, { text: 'X-Large', value: '4' }, { text: '2X-Large', value: '5' } ]; dropdownlistValue= "";