This question is locked. New answers and comments are not allowed.
Hi,
I just tried your Window component and I works great but the 'Scrollable' properties to true don't work in my case.
@{ Html.Telerik().Window()
.Name("ReferenceWindow")
.Title("Référence")
.Width(600)
.Height(600)
.Resizable()
.Draggable(true)
.Scrollable(true)
.Modal(true)
.Visible(false)
.ClientEvents(e => e.OnOpen("Window_onOpen").OnRefresh("Window_onRefresh"))
.Render(); }
I have a lot of text displayed in the window; 1000 lines.
Instead of showing a Window of a height of 600 with a vertical scrollbar, the Window is displayed with a height of 1500 with the vertical scrollbar of the main window displayed.
Am I missing something?
Thank you very much.
I just tried your Window component and I works great but the 'Scrollable' properties to true don't work in my case.
@{ Html.Telerik().Window()
.Name("ReferenceWindow")
.Title("Référence")
.Width(600)
.Height(600)
.Resizable()
.Draggable(true)
.Scrollable(true)
.Modal(true)
.Visible(false)
.ClientEvents(e => e.OnOpen("Window_onOpen").OnRefresh("Window_onRefresh"))
.Render(); }
I have a lot of text displayed in the window; 1000 lines.
Instead of showing a Window of a height of 600 with a vertical scrollbar, the Window is displayed with a height of 1500 with the vertical scrollbar of the main window displayed.
Am I missing something?
Thank you very much.