I have a Textbox within a Lisitem.. listitem is set to be draggable.... now the problem is, when I am trying to select text inside the textbox with the mouse, Listitem is getting dragged... here is a sample code
<listbox height="250px" width="200px" droppable="true" multiple="true" >
<listitem draggable="true" droppable="true" >
<listcell label="ZK Studio" >
<textbox value="some text for test 1" />
</listcell>
</listitem>
<listitem draggable="true" droppable="true" >
<listcell label="ZK Studio" >
<textbox value="some text for test 2" />
</listcell>
</listitem>
</listbox>
I do not want the listitem to be dragged when I am trying to select some text inside the textbox with the mouse....... is there any fix for this??