微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

即使ReadOnly设置为false,ASP.NET GridView中的CheckBoxField列也被禁用

我有一个GridView有两个CheckBoxField列。他们都将ReadOnly属性设置为false,但为其生成HTML代码具有disabled =“disabled”属性。所以值不能改变。

生成的HTML示例:

<span disabled="disabled"><input id="ctl00_ContentBody_GridView_ctl02_ctl01" type="checkBox" name="ctl00$ContentBody$GridView$ctl02$ctl01" checked="checked" disabled="disabled" /></span>

有人会说出怎么弄清楚吗?

解决方法

这是设计;认情况下,GridView中的行不可编辑。

有两种方法可以解决这个问题:

>添加编辑链接
在您的GridView标签中,添加AutoGenerateEditButton =“True”。当您的GridView在浏览器中呈现时,您现在应该会找到一个标记为“编辑”的超链接。如果您单击它,则GridView中的字段将变为可编辑,并且“编辑”链接将成为两个链接一个用于将更改保存到数据库,另一个将其丢弃。使用这种方法,可以根据您如何进行数据绑定,将GridView中的更改连接到数据库。此示例使用sqlDataSource控件。
alt text http://philippursglove.com/stackoverflow/checkboxgridview1.png
alt text http://philippursglove.com/stackoverflow/checkboxgridview2.png
>在其中添加一个带有CheckBox的TemplateField
在< columns>内标签,您可以添加您为自己设置数据绑定的TemplateField。

< asp:TemplateField HeaderText =“discontinued”>
<&的ItemTemplate GT;
< asp:CheckBox runat =“server”ID =“discontinuedCheckBox”Checked =“<%#Eval(”discontinued“)%>” Autopostback =“true”OnCheckedChanged =“discontinuedCheckBox_CheckedChanged”/>
< / ItemTemplate中>
< / ASP:的TemplateField>

alt text http://philippursglove.com/stackoverflow/checkboxgridview3.png

此复选框将被启用,但您需要自己做这些工作以将任何更改反映回数据库。只要你可以获得一个数据库密钥,这是很简单的,因为你需要在某个时候运行一个UPDATE语句,并且你想在右边的一行运行它!这里有两种方法可以做到这一点:

在您的Gridview标签中,添加DataKeyNames =“MyDatabasePrimaryKey”。然后在您的CheckedChanged事件处理程序中,您需要找到您正在处理的行,并在DataKeys数组中查找。

protected void discontinuedCheckBox_CheckedChanged(object sender,EventArgs e)
{
    CheckBox discontinuedCheckBox;
    sqlConnection conn;
    sqlCommand cmd;
    int productId;
    GridViewRow selectedRow;

    // Cast the sender object to a CheckBox
    discontinuedCheckBox = (CheckBox)sender;

    // We can find the row we clicked the checkBox in by walking up the control tree
    selectedRow = (GridViewRow)discontinuedCheckBox.Parent.Parent;

    // GridViewRow has a DataItemIndex property which we can use to look up the DataKeys array
    productId = (int)ProductGridView.DataKeys[selectedRow.DataItemIndex].Value;

    using (conn = new sqlConnection(ProductDataSource.ConnectionString))
    {
        cmd = new sqlCommand();
        cmd.Connection = conn;
        cmd.CommandType = CommandType.Text;
        if (discontinuedCheckBox.Checked)
        {
            cmd.CommandText = "UPDATE Products SET discontinued = 1 WHERE ProductId = " + ProductId.ToString();
        }
        else
        {
            cmd.CommandText = "UPDATE Products SET discontinued = 0 WHERE ProductId = " + ProductId.ToString();
        }
        conn.open();
        cmd.ExecuteNonQuery();
        conn.Close();
    }
}

或者,您可以在HiddenField控件中添加密钥:

< asp:TemplateField HeaderText =“discontinued”>
<&的ItemTemplate GT;
< asp:hiddenfield runat =“server”id =“ProductIdHiddenField”Value ='<%#Eval(“ProductID”)%>‘ />
< asp:CheckBox runat =“server”ID =“discontinuedCheckBox”Checked =“<%#Eval(”discontinued“)%>” Autopostback =“true”OnCheckedChanged =“discontinuedCheckBox_CheckedChanged”/>
< / ItemTemplate中>
< / ASP:的TemplateField>

protected void discontinuedCheckBox_CheckedChanged(object sender,EventArgs e)
{
    CheckBox discontinuedCheckBox;
    HiddenField ProductIdHiddenField;

    discontinuedCheckBox = (CheckBox)sender;

    ProductIdHiddenField = (HiddenField)discontinuedCheckBox.Parent.FindControl("ProductIdHiddenField");

    using (conn = new sqlConnection(ProductDataSource.ConnectionString))
    {
    ...
    if (discontinuedCheckBox.Checked)
    {
        cmd.CommandText = "UPDATE Products SET discontinued = 1 WHERE ProductId = " + ProductIdHiddenField.Value;
    }
    ...
    }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐