Problem: When a RadWindow is added to the document/form using the "open" method it is added as the last element. If any element above is floating relative the dragging and placement is obscure.
Solution: Add the element as the first child (or maybe provide an option to do so?).
Fix: I have fixed this by now doing this:
Solution: Add the element as the first child (or maybe provide an option to do so?).
Fix: I have fixed this by now doing this:
| // Override |
| Telerik.Web.UI.RadWindow.prototype._addWindowToDocument = function() { |
| var theForm = document.getElementById(this._formID); |
| if (!theForm) |
| theForm = document.forms[0]; |
| theForm.insertBefore(this._popupElement, theForm.firstChild); |
| }; |