有条件地隐藏网格视图行中的复选框

本文关键字:复选框 视图 隐藏 网格 有条件 | 更新日期: 2023-09-27 18:24:49

我遇到了很多麻烦,我已经从有同样问题的人那里学习了很多示例代码。基本上,我有一个网格视图,有一个带复选框的列和另一个带链接按钮的列。如果另一列中的数据绑定链接按钮不为空(字段不为空),我想隐藏/禁用一行中的复选框。我试过各种方法。。。(lb!=null),(lb.Text!=null。。。运气不佳

我做错了什么?(除了复选框隐藏功能外,网格视图功能正常)

我试着调试,但似乎没有通过第一个if语句(rowtype==…)

.cs:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
  if (e.Row.RowType == DataControlRowType.DataRow)
  {
    LinkButton lb = e.Row.FindControl("LinkButtonPO") as LinkButton;
    if (lb.CommandArgument != null)
    {
      CheckBox cb = e.Row.FindControl("CbPO") as CheckBox;
      if (cb != null)
        cb.Visible = false;
     }
   }
 }

.aspx

 <asp:GridView ID="GridView1" 
     CssClass="Gridview" runat="server" 
     AllowSorting="True"
     AutoGenerateColumns="False" 
     DataKeyNames="Order_ID"
     DataSourceID="OrderHistoryData"  
     HorizontalAlign="Center" 
     EmptyDataText="No Data to Display" 
     Width="785px"
     AlternatingRowStyle-CssClass="alt" AllowPaging="True"
     PagerStyle-CssClass="pager" GridLines="None" PageSize="20"
     ShowHeaderWhenEmpty="True" OnRowDataBound="GridView1_RowDataBound">
              <ItemTemplate>
                 <asp:LinkButton ID="LinkButtonPO" runat="server" CommandArgument='<%# Bind("PO_ID") %>' OnClick="LinkButtonPO_Click" Text='<%# Bind("PO_Lit") %>'></asp:LinkButton>
             </ItemTemplate>
             <asp:TemplateField >
             <ItemTemplate>
                <asp:CheckBox ID="CbPO" runat="server"  OnCheckedChanged="CbPO_CheckedChanged" Visible="true" />
             </ItemTemplate>
         </asp:TemplateField>

有条件地隐藏网格视图行中的复选框

LinkButton.CommandArgument以这种方式实现(.NET 4上的ILSpy):

public string CommandArgument
{
    get
    {
        string text = (string)this.ViewState["CommandArgument"];
        if (text != null)
        {
            return text;
        }
        return string.Empty;
    }
    set
    {
        this.ViewState["CommandArgument"] = value;
    }
}

因此,在ASP.NET中,属性通常不是null,而是String.Empty

所以改变

if (lb.CommandArgument != null)
    cb.Visible = false;

cb.Visible = lb.CommandArgument.Length > 0;

我这样使用,适用于我的

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            LinkButton lb = e.Row.FindControl("LinkButtonPO") as LinkButton;
            CheckBox cb = e.Row.FindControl("CbPO") as CheckBox;
            if (cb != null)
                {
                    cb.Visible = false;
                }
        }
    }

您没有为链接按钮使用Columns和Asp:TemplateField,所以使用它。