This question is locked. New answers and comments are not allowed.
Previous to 2010.3.1110, the modal window centered itself. This is no longer the case. Is this a bug? The thread, http://www.telerik.com/community/forums/aspnet-mvc/window/open-a-centered-window.aspx, seems to indicate that you now have the manually center it; i.e. instead of doing a $('name').data('tWindow').open() you have to do a $('name').data('tWindow').center().open(). At least a center modal option would be nice, if you are going to remove that functionality (if its not a bug).
Anyways, for those that are adventurous and want their modals to be centered, modify the telerik.window.js this way:
1) find the open method
2) as the last step of the if (this.modal) block, add the following:
this['center']();
Now the modals will automatically center without needing to manually do it.
Anyways, for those that are adventurous and want their modals to be centered, modify the telerik.window.js this way:
1) find the open method
2) as the last step of the if (this.modal) block, add the following:
this['center']();
Now the modals will automatically center without needing to manually do it.