jquery - jQueryUI draggable and resizable issue in IE -
i'm having issue getting resizable functionality working in below jsfiddle - http://jsfiddle.net/cyvyq/
for reason, each time try resize, element disappears , below div pulled up. has encountered issue or ideas on causing behave way?
<div style="width: 99%; overflow: auto;position:absolute;"> <div class="timelinecontainer"> <div class="task"> <div id="coords"></div> </div> <div class="event"> </div> <div class="resource"> </div> </div> </div>
many in advance
basically draggable script changes position of elements absolute sends loop. if account before hand though, in fiddle. good.
note: didn't change whatever had going on yellow one, thats separate issue you've asked here.
change css this:
.timelinecontainer { position:relative; height:75px; } .task { position: relative; height: 25px; width: 25px; background-color: yellow; cursor: move; } .event { position: absolute; left:5px; height: 25px; width: 25px; background-color: blue; cursor: move; top:25px; display:block; } .resource { position: absolute; left:10px; min-height: 25px; min-width: 25px; background-color: red; cursor: move; top:50px; }
Comments
Post a Comment