Hi there,
We have a non-modal window with product details we want to slide in and out over a page. The slide-in animation is working fine, but I can't get the slide-out to work. The fade does work so I know it is performing some animation. The slide-out is considered a "must-have" feature. Is there any way to do this?
Thanks!
Here is the window definition:
We have a non-modal window with product details we want to slide in and out over a page. The slide-in animation is working fine, but I can't get the slide-out to work. The fade does work so I know it is performing some animation. The slide-out is considered a "must-have" feature. Is there any way to do this?
Thanks!
Here is the window definition:
$("#detail-window").kendoWindow({ animation: { open: { effects: "slideIn:left fadeIn", duration: 500 }, close: { effects: "slide:right fadeOut", duration: 500 } }, draggable: false, height: "90%", modal: false, resizable: false, visible: false, width: "50%", title: false});