-
Bug
-
Resolution: Fixed
-
Normal
-
5.0.9
-
None
-
None
as code below,
drag list cell 1 to list cell 2 not works on IE9
<zk> <listbox height="100px"> <listitem id="li" draggable="true"> <listcell id="lc" label="list cell 1"> <div id="div">div</div> </listcell> </listitem> </listbox> <listbox droppable="true"> <attribute name="onDrop"> event.getDragged().setParent(self); </attribute> <listitem id="li2"> <listcell id="lc2" label="list cell 2"> <div id="div2">div</div> </listcell> </listitem> </listbox> </zk>