10

フォームにグリッドビューがあり、テンプレートフィールドがあります。そのうちの1つは次のとおりです。

<asp:TemplateField HeaderText="Country" HeaderStyle-HorizontalAlign="Left">
    <EditItemTemplate>
        <asp:DropDownList ID="DdlCountry" runat="server" DataTextField="Country" DataValueField="Sno">
        </asp:DropDownList>
    </EditItemTemplate>
    </asp:TemplateField>

RowEditingイベントで、国のドロップダウンリストの選択された値を取得する必要があります。次に、その値をDdlcountry.selectedvalue=valueとして設定します。編集アイテムテンプレートのドロップダウンリストが表示されたときに、ドロップダウンリストの0インデックスではなく、選択した値が表示されるようにします。しかし、ドロップダウンリストの値を取得できません。私はすでにこれを試しました:

int index = e.NewEditIndex;
DropDownList DdlCountry = GridView1.Rows[index].FindControl("DdlCountry") as DropDownList;

助けが必要です。ありがとう。

4

2 に答える 2

17

GridViewのコントロールにアクセスできるようにするには、もう一度データバインドする必要がありますEditItemTemplate。だからこれを試してみてください:

int index = e.NewEditIndex;
DataBindGridView();  // this is a method which assigns the DataSource and calls GridView1.DataBind()
DropDownList DdlCountry = GridView1.Rows[index].FindControl("DdlCountry") as DropDownList;

しかし、代わりに私はこれに使用RowDataBoundします、そうでなければあなたはコードを複製しています:

protected void gridView1_RowDataBound(object sender, GridViewEditEventArgs e)
{
 if (e.Row.RowType == DataControlRowType.DataRow)
  {
        if ((e.Row.RowState & DataControlRowState.Edit) > 0)
        {
          DropDownList DdlCountry = (DropDownList)e.Row.FindControl("DdlCountry");
          // bind DropDown manually
          DdlCountry.DataSource = GetCountryDataSource();
          DdlCountry.DataTextField = "country_name";
          DdlCountry.DataValueField = "country_id";
          DdlCountry.DataBind();

          DataRowView dr = e.Row.DataItem as DataRowView;
          Ddlcountry.SelectedValue = value; // you can use e.Row.DataItem to get the value
        }
   }
}
于 2013-01-29T13:40:08.520 に答える
7

あなたはこのコードで試すことができます-に基づいてEditIndex property

var DdlCountry  = GridView1.Rows[GridView1.EditIndex].FindControl("DdlCountry") as DropDownList;

リンク: http: //msdn.microsoft.com/fr-fr/library/system.web.ui.webcontrols.gridview.editindex.aspx

于 2013-01-29T13:40:55.410 に答える