Hi
I have created a custom template for the radwindows radconfirm dialogue as follows
this works fine where i get the localized text for Ok and cancel buttons.
However the issue is that the radconfirm box is draggable out of the screen area there by giveing scrolls nto the page. As show in the image.
How can i prevent this.
I have created a custom template for the radwindows radconfirm dialogue as follows
<telerik:RadWindowManager ID="RadWindowManager2" runat="server" VisibleTitlebar="false" MaxHeight="50px" KeepInScreenBounds="true " Behaviors="None" Skin="Telerik"> <ConfirmTemplate > <div class="rwDialogPopup radconfirm"> <div class="rwDialogText"> {1} </div> <div> <a onclick="$find('{0}').close(true);" class="rwPopupButton" href="javascript:void(0);"> <span class="rwOuterSpan"><span class="rwInnerSpan"><%= Localization.GetString("OKConfirm.Text", this.LocalResourceFile)%></span></span></a> <a onclick="$find('{0}').close(false);" class="rwPopupButton" href="javascript:void(0);"> <span class="rwOuterSpan"><span class="rwInnerSpan"><%= Localization.GetString("CancelConfirm.Text", this.LocalResourceFile)%></span></span></a> </div> </div> </ConfirmTemplate> </telerik:RadWindowManager>However the issue is that the radconfirm box is draggable out of the screen area there by giveing scrolls nto the page. As show in the image.
How can i prevent this.