如何在asp:表中隐藏列

本文关键字:隐藏 asp | 更新日期: 2023-09-27 18:07:20

我有一个简单的ASP。. NET表如下:

<asp:Table id="tbl">
    <asp:TableHeaderRow id="header">
        <asp:TableHeaderCell id="hcell1" />
    </asp:TableHeaderRow>
    <asp:TableRow id="row">
        <asp:TableCell id="cell1" />
    </asp:TableRow>
</asp:Table>

ID是编造的,实际的表有更多的列。我希望能够隐藏任何列编程从代码背后(不是javascript)。这可能吗?此时,我可以很容易地将标记更改为我想要的任何内容,所以我愿意听取建议。

编辑:很抱歉要说清楚。我希望能够以这样一种方式简单地隐藏列,即如果我添加新行,我不希望更改处理隐藏的任何代码。理想的格式是:

tbl.Columns["ColName"].Visible = false;

不太理想的是for/foreach循环做类似的事情。

如何在asp:表中隐藏列

尝试使用这个扩展方法,它扩展了Table类,添加了通过索引和TableHeaderCell(如果存在)的ID来隐藏列的方法:

但是,请注意,它不提供任何逻辑来满足跨其他的列列:

tbl.HideColumn("HeaderID");
tbl.HideColumn(0);

public static class TableExtensions
{
    public static void HideColumn(this Table table, int index)
    {
        foreach (TableRow row in table.Rows)
        {
            if (row.Cells.Count-1 >= index)
            {
                row.Cells[index].Visible = false;
            }
        }
    }
    public static void HideColumn(this Table table, string id)
    {
        int index = 0;
        bool columnFound = false;
        if (table.Rows.Count > 1)
        {
            TableHeaderRow headerRow = table.Rows[0] as TableHeaderRow;
            if (headerRow != null)
            {
                foreach (TableHeaderCell cell in headerRow.Cells)
                {
                    if (cell.ID.ToLower() == id.ToLower())
                    {
                        columnFound = true;
                        break;
                    }
                    index++;
                }
            }
        }
        if(columnFound)
            HideColumn(table, index);
    }
}

将runat="server"放在所有标签上,然后在后面的代码中可以执行[control id]。

标记:

<asp:Table id="tbl" runat="server"> <---!
    <asp:TableHeaderRow id="header">
        <asp:TableHeaderCell id="hcell1" />
    </asp:TableHeaderRow>
    <asp:TableRow id="row">
        <asp:TableCell id="cell1" />
    </asp:TableRow>
</asp:Table>

后台代码:

foreach(TableRow row in tb1.Rows)
{
    if (row.Columns.Count >= x + 1)
        row.Columns[x].Visible = false;
}

如果你打算使用内置的Delete/Edit/Select命令,并且你想隐藏id列,你最好在风格上隐藏它。

下面是我使用的函数

static public void HideColumn(GridView gv, int columnIndex)
{
    if (gv.HeaderRow != null)
        gv.HeaderRow.Cells[columnIndex].Style.Add("display", "none");
    foreach (GridViewRow row in gv.Rows)
    {
        if (row.RowType == DataControlRowType.DataRow)
            row.Cells[columnIndex].Style.Add("display", "none");
    }
}

编辑在这个家伙旁边

static public int GetColumnIndex(GridView gv, string columnName)
{
    int returnMe = -1;
    for (int i = 0; i < gv.Columns.Count; i++)
    {
        if (gv.Columns[i].HeaderText == columnName)
        {
            returnMe = i;
            break;
        }
    }
    return returnMe;
}

添加到@jdavies的响应中,如果我们为任何列指定了列跨度,下面的代码也可以工作。此外,该代码还经过增强,可以根据需要显示或隐藏列。

 public static class TableExtensions
{
    public static void ShowOrHideColumn(this Table table, int index, bool bShowColumn)
    {
        foreach (TableRow row in table.Rows)
        {
            var colIndex = 0;
            var actionCol = 0;
            foreach (TableCell cell in row.Cells)
            {
                if (colIndex == index)
                {
                    row.Cells[actionCol].Visible = bShowColumn;
                    break;
                }
                colIndex += cell.ColumnSpan == 0 ? 1 : cell.ColumnSpan;
                actionCol++;
            }
        }
    }
    public static void ShowOrHideColumn(this Table table, string id, bool bShowColumn)
    {
        int index = 0;
        bool columnFound = false;
        if (table.Rows.Count > 1)
        {
            TableHeaderRow headerRow = table.Rows[0] as TableHeaderRow;
            if (headerRow != null)
            {
                foreach (TableHeaderCell cell in headerRow.Cells)
                {
                    if (cell.ID != null && cell.ID.ToLower() == id.ToLower())
                    {
                        cell.Visible = bShowColumn;
                        columnFound = true;
                        break;
                    }
                    index += cell.ColumnSpan == 0 ? 1 : cell.ColumnSpan;
                }
            }
        }
        if (columnFound)
            table.ShowOrHideColumn(index, bShowColumn);
    }
}

此代码也适用于在表的不同行中指定的可变列跨度