You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OboutSuite/Grid/aspnet_grouping_hide_cols.aspx

16 lines
501 B

<%@ Page Language="C#" EnableEventValidation="false"%>
<%@ Register TagPrefix="obout" Namespace="Obout.Grid" Assembly="obout_Grid_NET" %>
<script runat="server" Language="C#">
void Page_Load(object sender, EventArgs e)
{
grid1.HideColumnsWhenGrouping = chkSwitchGroupingMode.Checked;
if (!chkSwitchGroupingMode.Checked)
{
for (int i = 0; i < grid1.Columns.Count; i++)
{
grid1.Columns[i].Visible = true;
}
}