This question is locked. New answers and comments are not allowed.
I would like to know how to assign an ID to my window generated with javascript. Besides draggable property is not identified (firebug message is: "b.draggable is not a constructor") and did not center the window. This is the function that creates the window:
function crearModal() { var popUp = $.telerik.window.create({ title: "A title", html: "Text", contentUrl: "", modal: true, visible: false, resizable: false, draggable: true, width: 300, height: 150 }); popUp.attr("id", "myId"); var w = popUp.data("tWindow"); w.center().open();}