这是我在运行时绑定的网格视图中的代码:
...
<asp:templatefield>
<edititemtemplate>
<asp:dropdownlist runat="server" id="ddgvOpp" />
</edititemtemplate>
<itemtemplate>
<%# Eval("opponent.name") %>
</itemtemplate>
</asp:templatefield>
...
我想绑定下拉列表"ddgvOpp",但我不知道如何绑定。我应该,但我没有。这是我所拥有的,但我不断收到"对象引用"错误,这是有道理的:
protected void gvResults_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow) //skip header row
{
DropDownList ddOpp = (DropDownList)e.Row.Cells[5].FindControl("ddgvOpp");
BindOpponentDD(ddOpp);
}
}
BindOpponentDD()
的地方就是填充下拉列表列表的地方。我这样做不是在正确的事件中吗?如果没有,我需要把它放进去?
提前非常感谢...
好吧,我想我只是愚蠢。 我想通了。
在 RowDataBound 事件中,只需添加以下条件:
if (myGridView.EditIndex == e.Row.RowIndex)
{
//do work
}
感谢Saurabh Tripathi,
您提供的解决方案对我有用。在 gridView_RowDataBound() 事件中使用。
if(gridView.EditIndex == e.Row.RowIndex && e.Row.RowType == DataControlRowType.DataRow)
{
// FindControl
// And populate it
}
如果有人遇到同样的问题,请尝试一下。
干杯。
我遇到了同样的问题,但是此修复程序(Jason的修复程序,它将条件添加到处理程序中)对我不起作用; 编辑行从未被数据绑定,因此该条件从未评估为 true。 RowDataBound从未使用与GridView.EditIndex相同的RowIndex调用。 不过,我的设置略有不同,因为我没有以编程方式绑定下拉列表,而是将其绑定到页面上的 ObjectDataSource。 但是,下拉列表仍然必须按行单独绑定,因为它可能的值取决于行中的其他信息。 因此,ObjectDataSource有一个SessionParameter,我确保在绑定需要时设置适当的会话变量。
<asp:ObjectDataSource ID="objInfo" runat="server" SelectMethod="GetData" TypeName="MyTypeName">
<SelectParameters>
<asp:SessionParameter Name="MyID" SessionField="MID" Type="Int32" />
</SelectParameters>
以及相关行中的下拉列表:
<asp:TemplateField HeaderText="My Info" SortExpression="MyInfo">
<EditItemTemplate>
<asp:DropDownList ID="ddlEditMyInfo" runat="server" DataSourceID="objInfo" DataTextField="MyInfo" DataValueField="MyInfoID" SelectedValue='<%#Bind("ID") %>' />
</EditItemTemplate>
<ItemTemplate>
<span><%#Eval("MyInfo") %></span>
</ItemTemplate>
</asp:TemplateField>
我最终所做的是不使用 GridView 中的命令字段来生成我的编辑、删除、更新和取消按钮;我自己用模板字段完成了它,通过适当地设置命令名称,我能够在 GridView 上触发内置的编辑/删除/更新/取消操作。 对于"编辑"按钮,我使 CommandArgument 成为绑定下拉列表所需的信息,而不是像通常那样使用行的 PK。 幸运的是,这并没有阻止 GridView 编辑相应的行。
<asp:TemplateField>
<ItemTemplate>
<asp:ImageButton ID="ibtnDelete" runat="server" ImageUrl="~/images/delete.gif" AlternateText="Delete" CommandArgument='<%#Eval("UniqueID") %>' CommandName="Delete" />
<asp:ImageButton ID="ibtnEdit" runat="server" ImageUrl="~/images/edit.gif" AlternateText="Edit" CommandArgument='<%#Eval("MyID") %>' CommandName="Edit" />
</ItemTemplate>
<EditItemTemplate>
<asp:ImageButton ID="ibtnUpdate" runat="server" ImageUrl="~/images/update.gif" AlternateText="Update" CommandArgument='<%#Eval("UniqueID") %>' CommandName="Update" />
<asp:ImageButton ID="ibtnCancel" runat="server" ImageUrl="~/images/cancel.gif" AlternateText="Cancel" CommandName="Cancel" />
</EditItemTemplate>
</asp:TemplateField>
在 RowCommand 处理程序中:
void grdOverrides_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "Edit")
Session["MID"] = Int32.Parse(e.CommandArgument.ToString());
}
当然,RowCommand 发生在行进入编辑模式之前,因此在下拉列表数据绑定之前。 所以一切都很好。 这有点黑客,但我花了足够的时间试图弄清楚为什么编辑行还没有被数据绑定。
protected void grdDevelopment_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (grdDevelopment.EditIndex == e.Row.RowIndex && e.Row.RowType==DataControlRowType.DataRow)
{
DropDownList drpBuildServers = (DropDownList)e.Row.Cells[0].FindControl("ddlBuildServers");
}
}
试试这个
这将帮助你
这段代码将做你想做的事:
<asp:TemplateField HeaderText="garantia" SortExpression="garantia">
<EditItemTemplate>
<asp:DropDownList ID="ddgvOpp" runat="server" SelectedValue='<%# Bind("opponent.name") %>'>
<asp:ListItem Text="Si" Value="True"></asp:ListItem>
<asp:ListItem Text="No" Value="False"></asp:ListItem>
</asp:DropDownList>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("opponent.name") %>'></asp:Label>
</ItemTemplate>