Hi,
i am using rad window to show errors or success but i want
1] only close and pin button
2] Dont want scrolling
2] Dont want last Section(splitted part) of window
My code and screenshot is
and
i am using rad window to show errors or success but i want
1] only close and pin button
2] Dont want scrolling
2] Dont want last Section(splitted part) of window
My code and screenshot is
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="true"> </telerik:RadWindowManager> <telerik:RadWindow ID="radwindowPopup" runat="server" Animation="FlyIn" CssClass="modalPopup" DestroyOnClose="true" EnableShadow="true" IconUrl="~/Images/Bi.ico" KeepInScreenBounds="true" Width="420px" Height="150px" MaxHeight="150px" MaxWidth="420px" MinHeight="150px" MinWidth="420px" Modal="true" RenderMode="Classic" VisibleStatusbar="true" VisibleTitlebar="true" Behaviors="Close" Title="Manifest-BI" Skin="Web20"> <ContentTemplate> <center> <div style="padding: 20px"> Are you sure you want to Delete this Record? <br /> <br /> <telerik:RadButton ID="btnOk" runat="server" Text="Yes" Width="70px" OnClick="btnOk_Click" Skin="Web20" /> <telerik:RadButton ID="btnCancel" runat="server" Text="No" Width="70px" OnClick="btnCancel_Click" Skin="Web20" /> </div> </center> </ContentTemplate> </telerik:RadWindow>