I have a Window that opens the first time and closes the first time fine. Works great.
However, the second time the window opens when clicked by a user, the entire window and contents is 50% sized. Images, text everything.
I experimented and found if I remove the .Animation line the Window works as expected each time.
Bug?
Html.Kendo().Window() .Name(windowId) .Width(680) .Height(430) .Title(Model.ChartTitle) .Visible(false) .Modal(true) .Draggable(true) .Animation(animation => { animation.Open(open => { open.Fade(FadeDirection.In); }); })However, the second time the window opens when clicked by a user, the entire window and contents is 50% sized. Images, text everything.
I experimented and found if I remove the .Animation line the Window works as expected each time.
Bug?