This question is locked. New answers and comments are not allowed.
Hi There,
Using following gets the window DOM object
var dialog = $.telerik.window.create({ title : "Success", html : "<strong>this is a test...</strong>", modal : true, resizable : false, draggable : true, visible : false, width : 300, height : 100 }) .data('tWindow').open();
How would I get the Window DOM Object for "SomeWindow" created using following? (Probably simple but newbie here)
<% Html.Telerik().Window()
.Name("SomeWindow")
.Title("Window")
.Width(380)
.Height(180)
.Visible(true)
....etc
using JQuery
var elementWindow = $('#SomeWindow').data('tWindow')
will return me the client-side object but not the window Dom object.
Any help here would be much appreciated.
Thx,
Peter
