我如何在GridView下拉列表中维护选中的项目

本文关键字:维护 项目 下拉列表 GridView | 更新日期: 2023-09-27 18:09:52

我的问题是我无法在Gridview_RowEditing事件后保留gridview中的项目。

 <asp:TemplateField HeaderStyle-CssClass="gridHeading" HeaderText="Get Alerts By SMS"
                                ItemStyle-CssClass="gridValue" ItemStyle-HorizontalAlign="Center">
         <ItemTemplate>
                 <asp:Label ID="lblAlertBySMSGeofence" runat="server" Text=' <%# (Convert.ToBoolean(Convert.ToInt32(Eval("alertBySMS")))) ? "Yes" : "No" %>'></asp:Label>
         </ItemTemplate>
         <EditItemTemplate>
              <asp:DropDownList ID="ddlAlertBySMSGeofence" runat="server" AppendDataBoundItems="true"
                                        CssClass="gridValue">
                                        <asp:ListItem Text="Yes" Value="1"/>
                                        <asp:ListItem Text="No" Value="0" />
                                    </asp:DropDownList>
                                </EditItemTemplate>
                                <HeaderStyle CssClass="gridHeading" />
                                <ItemStyle CssClass="gridValue" HorizontalAlign="Center" />
 </asp:TemplateField>

编辑

    protected void grdGeofence_RowEditing(object sender, GridViewEditEventArgs e)
    {
        GridViewRow row = (GridViewRow)grdGeofence.Rows[e.NewEditIndex];
        grdGeofence.EditIndex = e.NewEditIndex;
        List<COMMONGeofenceAlert> geofenceData = new BLsmsalertdetail().getGeofencealertDetail(Session["sessaccountid"].ToString(), txtdeviceID.Text);
        for (int y = 0; y < geofenceData.Count; y++)
        {
            geofenceData[y].vehicleNumber = ddlVehicleNumber.SelectedItem.Text;
        }
        grdGeofence.DataSource = geofenceData;
        grdGeofence.DataBind();
    }
protected void grdGeofence_RowUpdating(object sender, GridViewUpdateEventArgs e)
 {
    GridViewRow row = (GridViewRow)grdGeofence.Rows[e.RowIndex];
    string id = grdGeofence.DataKeys[e.RowIndex].Value.ToString();
    Label lblVehicle = (Label)row.FindControl("lblVehicleGeofence");
    TextBox mobileNumber = (TextBox)row.FindControl("txtMobileGeofence");
    TextBox EmailID = (TextBox)row.FindControl("txtEmailGeofence");
    DropDownList ddlAlertBySMS = (DropDownList)row.FindControl("ddlAlertBySMSGeofence");
    DropDownList ddlAlertbyEmail = (DropDownList)row.FindControl("ddlAlertByeEmailGeofence");
    DropDownList AlertAtGeofenceEnter = (DropDownList)row.FindControl("ddlAlertGeofenceEnter");
    DropDownList alertAtGeofenceExit = (DropDownList)row.FindControl("ddlAlertGeofenceExit");
    DropDownList ddlAddress = (DropDownList)row.FindControl("ddlGeofenceAddressGrid");
    BLsmsalertdetail detail = new BLsmsalertdetail();
    int i = updateGeofence(id, mobileNumber.Text, EmailID.Text, ddlAlertBySMS.SelectedItem.Value, ddlAlertbyEmail.SelectedItem.Value, AlertAtGeofenceEnter.SelectedItem.Value, alertAtGeofenceExit.SelectedItem.Value, ddlAddress.SelectedItem.Text);
    if (i == 1)
    {
        ScriptManager.RegisterClientScriptBlock(this.Page, typeof(Page), Guid.NewGuid().ToString(), "alert('Success!!')", true);
    }
    else
    {
        ScriptManager.RegisterClientScriptBlock(this.Page, typeof(Page), Guid.NewGuid().ToString(), "alert('Error!! Could not Update the value.')", true);
        }
        grdGeofence.EditIndex = -1;
        List<COMMONGeofenceAlert> geofenceData = new BLsmsalertdetail().getGeofencealertDetail(Session["sessaccountid"].ToString(), txtdeviceID.Text);
        for (int y = 0; y < geofenceData.Count; y++)
        {
            geofenceData[y].vehicleNumber = ddlVehicleNumber.SelectedItem.Text;
        }
        grdGeofence.DataSource = geofenceData;
        grdGeofence.DataBind();
}
protected void grdGeofence_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (grdGeofence.EditIndex == e.Row.RowIndex && e.Row.RowType == DataControlRowType.DataRow)
        {
            DropDownList ddlAddress = (DropDownList)e.Row.Cells[0].FindControl("ddlGeofenceAddressGrid");
            List<COMMONsmsalertdetail> getSmsDispatcherData = new BLsmsalertdetail().getSMSalertDetail(Session["sessaccountid"].ToString());
            for (int i = 0; i < getSmsDispatcherData.Count; i++)
            {
                ddlAddress.Items.Add(new ListItem(getSmsDispatcherData[i].place, getSmsDispatcherData[i].place));
       }
            //ddlAddress.DataSource = getSmsDispatcherData;
            //ddlAddress.DataTextField = "place";
            //ddlAddress.DataValueField = "place";
            //ddlAddress.DataBind();
        }
    }

数据库根据情况返回0/1,我使用布尔表达式将其转换为Yes和No。

我想保持"lblAlertBySMSGeofence"的值作为下拉列表"ddlAlertBySMSGeofence"的选定文本

我看过很多网站的解决方案,包括SO。但是这些方法太冗长,也不符合我的情况。我有大约100个下拉列表,我不能一次又一次地重写代码。

有更简单的方法吗?

我如何在GridView下拉列表中维护选中的项目

DropDowList ddlAlertBySMSGeofence添加属性SelectedValue='<%#Eval("alertBySMS")%>'。查看链接如何在gridviewedittemplate中设置下拉列表的SelectedValue

<EditItemTemplate>
  <asp:DropDownList ID="ddlAlertBySMSGeofence" runat="server"
      AppendDataBoundItems="true" SelectedValue='<%#Eval("alertBySMS")%>'  
      CssClass="gridValue">
         <asp:ListItem Text="Yes" Value="1" />
         <asp:ListItem Text="No" Value="0" />
</asp:DropDownList>