or
<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server"> <script type="text/javascript"> //<![CDATA[ function openRejWin() { var oWnd = radopen("Confirm.aspx", "RadWindow3"); } function OnRejectedClose(sender, eventArgs) { alert("Moving on!"); window.location = "Menu.aspx"; } function OnClosing(sender, eventArgs) { alert("Closing!"); } //]]> </script> </telerik:RadScriptBlock> <telerik:RadWindowManager ID="RadWindowManager1" VisibleStatusbar="false" runat="server" Skin="Hay" EnableShadow="true" > <Windows> <telerik:RadWindow ID="RadWindow3" runat="server" ReloadOnShow="true" Behaviors="Close" OnClientClose="OnRejectedClose" OnClientBeforeClose="OnClosing" NavigateUrl="Confirm.aspx" DestroyOnClose="false"> </telerik:RadWindow> </Windows> </telerik:RadWindowManager> btnReject.Attributes.Add("onclick", "openRejWin(); return false");<telerik:RadGrid ID="ResultsGrid" runat="server" ShowStatusBar="true" EnableViewState="true" AllowSorting="True" AllowFilteringByColumn="false" GroupingEnabled="False" AutoGenerateColumns="False" AllowMultiRowSelection="false" OnNeedDataSource="ResultsGrid_NeedDataSource" OnItemCommand="ResultsGrid_ItemCommand" OnItemDataBound="ResultsGrid_ItemDataBound" OnPreRender="ResultsGrid_PreRender" OnItemCreated="ResultsGrid_ItemCreated" OnDetailTableDataBind="ResultsGrid_DetailTableDataBind"> <StatusBarSettings ReadyText="Stand by" LoadingText="Working..." /> <HeaderContextMenu EnableTheming="True"> <CollapseAnimation Duration="200" Type="OutQuint" /> </HeaderContextMenu> <MasterTableView DataMember="TriggeredConditions" AllowMultiColumnSorting="true" EnableHeaderContextMenu="true" HierarchyLoadMode="ServerOnDemand" ClientDataKeyNames="TriggeredConditionId" DataKeyNames="TriggeredConditionId"> <DetailTables> <telerik:GridTableView runat="server" AllowSorting="false" ShowFooter="false" ShowHeader="false" DataMember="TriggeredConditionStats" Name="ConditionStats" EnableNoRecordsTemplate="false" ShowHeadersWhenNoRecords="false" NoDetailRecordsText=""> <Columns> (Removed) </Columns> </telerik:GridTableView> </DetailTables> <RowIndicatorColumn Visible="False"> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <Columns> <telerik:GridTemplateColumn UniqueName="TemplateColumn"> <HeaderTemplate> <asp:ImageButton ID="ExpandAll" runat="server" CommandName="ExpandAll" ImageUrl="~/App_Themes/Standard/images/Grid_ExpandAll.png" ToolTip="ExpandAll" /> <asp:ImageButton ID="CollapseAll" runat="server" CommandName="CollapseAll" ImageUrl="~/App_Themes/Standard/images/Grid_CollapseAll.png" ToolTip="CollapseAll" /> </HeaderTemplate> </telerik:GridTemplateColumn> (Columns Removed) </Columns> </MasterTableView> <SortingSettings SortToolTip="" /> <ClientSettings AllowColumnsReorder="true" AllowKeyboardNavigation="true" ColumnsReorderMethod="Reorder" AllowExpandCollapse="true"> <Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="100%" SaveScrollPosition="false" /> <Resizing AllowColumnResize="True" ClipCellContentOnResize="True" EnableRealTimeResize="True" /> <Selecting AllowRowSelect="True" /> <ClientEvents OnKeyPress="GridKeyPressed" OnRowSelected="RowSelected" OnGridCreated="GridCreated" /> <ClientMessages DragToGroupOrReorder="" /> </ClientSettings> <FilterMenu EnableEmbeddedSkins="False" EnableTheming="True"> <CollapseAnimation Duration="200" Type="OutQuint" /> </FilterMenu> </telerik:RadGrid>private GridHeaderItem _gridHeaderItem;private ImageButton _imgCollapse;private ImageButton _imgExpand;protected void ResultsGrid_ItemCreated(object sender, GridItemEventArgs e){ if (e.Item is GridHeaderItem) { if (e.Item.OwnerTableView == e.Item.OwnerTableView.OwnerGrid.MasterTableView) { _gridHeaderItem = e.Item as GridHeaderItem; _imgCollapse = new ImageButton(); _imgCollapse.ImageUrl = "~/App_Themes/Standard/images/Grid_CollapseAll.png"; _imgCollapse.CommandName = "CollapseAll"; _imgCollapse.ID = "btnCollapse"; _imgCollapse.Visible = false; _imgExpand = new ImageButton(); _imgExpand.ImageUrl = "~/App_Themes/Standard/images/Grid_ExpandAll.png"; _imgExpand.CommandName = "ExpandAll"; _imgExpand.ID = "btnExpand"; _imgExpand.Visible = true; _gridHeaderItem.Cells[0].Controls.Add(_imgCollapse); _gridHeaderItem.Cells[0].Controls.Add(_imgExpand); } }}protected void ResultsGrid_ItemCommand(object source, GridCommandEventArgs e){ switch (e.CommandName) { case "ExpandCollapse": CheckExpandCollapse(e); break; case "ExpandAll": ChangeExpandButtons(e, true); break; case "CollapseAll": ChangeExpandButtons(e, false); break; }}private void CheckExpandCollapse(GridCommandEventArgs e){ int expanded = 0; int collapsed = 0; foreach (GridDataItem item in ResultsGrid.MasterTableView.Items) { if (item.Expanded) { expanded++; } else { collapsed++; } } //All are expanded if (collapsed == 1 && !e.Item.Expanded) { _gridHeaderItem.Cells[0].Controls.Remove(_imgCollapse); _gridHeaderItem.Cells[0].Controls.Remove(_imgExpand); _imgCollapse.Visible = true; _imgExpand.Visible = false; _gridHeaderItem.Cells[0].Controls.Add(_imgCollapse); _gridHeaderItem.Cells[0].Controls.Add(_imgExpand); } //All are collapsed, current item is collapsing if (expanded == 1 && e.Item.Expanded) { _gridHeaderItem.Cells[0].Controls.Remove(_imgCollapse); _gridHeaderItem.Cells[0].Controls.Remove(_imgExpand); _imgCollapse.Visible = false; _imgExpand.Visible = true; _gridHeaderItem.Cells[0].Controls.Add(_imgCollapse); _gridHeaderItem.Cells[0].Controls.Add(_imgExpand); }}private void ChangeExpandButtons(GridCommandEventArgs e, bool expand){ ImageButton btnExpand = (ImageButton)e.Item.FindControl("btnExpand"); ImageButton btnCollapse = (ImageButton)e.Item.FindControl("btnCollapse"); //Looping through each DataItem and making the "btnExpand" image button in the item visibility to false and "btnCollapse" visibility to true foreach (GridDataItem gridDataItem in ResultsGrid.MasterTableView.GetItems(new GridItemType[] { GridItemType.Item, GridItemType.AlternatingItem })) { btnExpand.Visible = !expand; btnCollapse.Visible = expand; } //Exapanding the DataItem foreach (GridDataItem item in ResultsGrid.Items) { item.Expanded = expand; } //Hiding the CollapseAll image in the header to true and ExpandAll image in the header to false GridHeaderItem gridHeaderItem = e.Item as GridHeaderItem; ImageButton imgCollapseAll = (ImageButton)gridHeaderItem.FindControl("CollapseAll"); imgCollapseAll.Visible = expand; ImageButton imgExpandAll = (ImageButton)gridHeaderItem.FindControl("ExpandAll"); imgExpandAll.Visible = !expand; }Hi,
The paging doesn't work correctly. It only shows 1 page, while the record has more than 50 rows. I attached the code below.
Thanks
Vinh
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="cubesstatus.aspx.cs" Inherits="SSI.cubesstatus" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"> </telerik:RadStyleSheetManager> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <div> <br /> <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" DataSourceID="SqlDataSource1" GridLines="None" ShowGroupPanel="True" Skin="Vista" AllowAutomaticUpdates="True" AutoGenerateEditColumn="True"> <PagerStyle AlwaysVisible="True" /> <MasterTableView AllowCustomPaging="True" AutoGenerateColumns="False" DataKeyNames="ID" DataSourceID="SqlDataSource1" EditMode="PopUp"> <RowIndicatorColumn> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <DetailTables> <telerik:GridTableView DataKeyNames="CubeID" DataSourceID="SqlDataSource2" Width="100%" runat="server" AutoGenerateColumns="False" AllowAutomaticUpdates="False" AllowSorting="True" EditMode="InPlace"> <ParentTableRelation> <telerik:GridRelationFields DetailKeyField="CubeID" MasterKeyField="ID" /> </ParentTableRelation> <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings> <Columns> <telerik:GridBoundColumn SortExpression="cubename" HeaderText="Cube name" HeaderButtonType="TextButton" DataField="cubename" UniqueName="cubename" ReadOnly="True"> </telerik:GridBoundColumn> <telerik:GridBoundColumn SortExpression="Status" HeaderText="Status" HeaderButtonType="TextButton" DataField="Status" UniqueName="Status" ReadOnly="True"> </telerik:GridBoundColumn> <telerik:GridBoundColumn SortExpression="lastcheck" HeaderText="Last check" HeaderButtonType="TextButton" DataField="lastcheck" UniqueName="lastcheck" ReadOnly="True"> </telerik:GridBoundColumn> </Columns> <AlternatingItemStyle BackColor="#99CCFF" ForeColor="White" /> <PagerStyle AlwaysVisible="True" /> </telerik:GridTableView> </DetailTables> <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings> <ExpandCollapseColumn Visible="True"> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="ID" DataType="System.Int32" HeaderText="ID" ReadOnly="True" SortExpression="ID" UniqueName="ID"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="CatalogName" HeaderText="CatalogName" SortExpression="CatalogName" UniqueName="CatalogName" ReadOnly="True"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="CubeName" HeaderText="CubeName" SortExpression="CubeName" UniqueName="CubeName" ReadOnly="True"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="ServerName" HeaderText="ServerName" SortExpression="ServerName" UniqueName="ServerName" ReadOnly="True"> </telerik:GridBoundColumn> <telerik:GridCheckBoxColumn DataField="Monitor" DataType="System.Boolean" HeaderText="Monitor" SortExpression="Monitor" UniqueName="Monitor"> </telerik:GridCheckBoxColumn> </Columns> <AlternatingItemStyle BackColor="#99CCFF" ForeColor="White" /> <PagerStyle AlwaysVisible="True" /> <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" Font-Underline="False" Wrap="True" /> </MasterTableView> <ClientSettings AllowDragToGroup="True"> </ClientSettings> </telerik:RadGrid> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:csSSIReports %>" SelectCommand="SELECT [ID], [CatalogName], [CubeName], [ServerName], [Monitor] FROM [tblCubes]" UpdateCommand="UPDATE tblCubes SET Monitor = @Monitor WHERE (ID = @ID)"> <UpdateParameters> <asp:Parameter Name="Monitor" /> <asp:Parameter Name="ID" /> </UpdateParameters> </asp:SqlDataSource> </div> <telerik:RadAjaxManager runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadGrid1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGrid1" UpdatePanelHeight="" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:csSSIReports %>" SelectCommand="SELECT SS.CubeID, S.CubeName, SS.Status, SS.LastCheck FROM tblCubeStatus AS SS INNER JOIN tblCubes AS S ON S.ID = SS.CubeID WHERE (SS.CubeID = @CubeID)"> <SelectParameters> <asp:Parameter Name="CubeID" /> </SelectParameters> </asp:SqlDataSource> </form> </body> </html>
<html> <head> <title>A page</title> </head> <body> Some text content in the BODY. Press ENTER with the cursor placed anywhere in this text. Go to HTML mode, count how many BRs were created and delete the BRs. Go back to design mode. Press ENTER again, go back into HTML mode and count the BRs again. Repeat. You'll notice that a BR is added after each cycle. This happens only when the HTML and BODY tags are present in the HTML code; doesn;t happen when only the text is pasted in the editor in HTML mode. </body></html>
f.pasteHtml("<font "+e+" id='radERealFont'> </font>");