将值更改为DataGrid单元格

时间:2013-05-07 16:30:54

标签: c# asp.net datagrid

我的代码隐藏中有一个设置数据网格的函数。我创建了一个新的空白列并将其添加到我的数据网格中,我想为列中只添加一个与对象ID匹配的行。由于某种原因,单元格不存储我设置的文本。有什么想法吗?

public void SetContacts(IEnumerable<User> contactList, User reqUser)
    {
        BoundColumn reqColumn = new BoundColumn();
        reqColumn.HeaderText = "";
        dgExistingContacts.Columns.Add(reqColumn);
        dgExistingContacts.DataSource = contactList;

        foreach (DataGridItem row in dgExistingContacts.Items)
        {
            if (row.Cells[0].Text == reqUser.id.ToString())
                row.Cells[6].Text = "Requestor";
        }
        dgExistingContacts.DataBind();

    }

如果有帮助,这是我的数据网格:

<asp:DataGrid runat="server" ID="dgExistingContacts" AutoGenerateColumns="false" CssClass="styledGray" HeaderStyle-CssClass="head" CellSpacing="1" CellPadding="4" GridLines="None" AlternatingItemStyle-CssClass="even" ItemStyle-CssClass="odd">
                    <Columns>
                        <asp:BoundColumn DataField="Id" Visible="false" />
                        <asp:BoundColumn DataField="Title" HeaderText="Role" />
                        <asp:BoundColumn DataField="LastName" HeaderText="Last Name" ItemStyle-Wrap="false" />
                        <asp:BoundColumn DataField="FirstName" HeaderText="First Name" ItemStyle-Wrap="false" />
                        <asp:BoundColumn DataField="Phone" HeaderText="Phone" DataFormatString="{0:(###) ###-####}" />
                        <asp:BoundColumn DataField="EmailAddress" HeaderText="Email" ItemStyle-Wrap="false" />
                    </Columns>
                </asp:DataGrid>

我觉得它应该很简单,但我无法弄清楚为什么它没有约束力。

3 个答案:

答案 0 :(得分:0)

我看到您正在向dgExistingContacts添加一列,然后将contactList指定为DataSource dgExistingContacts,这意味着您先添加列,然后重置{{1}在此代码中使用前DaraGrid

DataSource

我认为当您将 dgExistingContacts.Columns.Add(reqColumn); dgExistingContacts.DataSource = contactList; 分配给DataSource时,您在其中更改的任何内容都将被重置。因此,通过从代码中删除GridView,您的问题将得到解决。

答案 1 :(得分:0)

尝试处理GridView的{​​{1}}事件并在那里添加值。

答案 2 :(得分:0)

我发现在尝试更改内容之前必须绑定数据。我最终得到了这个:

public void SetContacts(IEnumerable<User> contactList, User reqUser)
{
    BoundColumn reqColumn = new BoundColumn();
    reqColumn.HeaderText = "";
    dgExistingContacts.Columns.Add(reqColumn);
    dgExistingContacts.DataSource = contactList;
    dgExistingContacts.DataBind();
    foreach (DataGridItem row in dgExistingContacts.Items)
    {
        if (row.Cells[0].Text == reqUser.id.ToString())
            row.Cells[6].Text = "Requestor";
    }
}