简体   繁体   English

更改GridView中的下拉列表时如何调用函数?

[英]How to call a function when drop down list in gridview is changed?

I have a GridView and for one of the columns I'm using a drop down list that displays a list of users: 我有一个GridView,对于其中一列,我使用的是一个显示用户列表的下拉列表:

<asp:GridView  style="float:left"  
    ID="gvBookings" 
    ShowHeaderWhenEmpty="true"
    CssClass="tblResults" 
    runat="server" 
    OnRowDataBound="gvBookings_RowDataBound"                           
    DataKeyField="ID" 
    AutoGenerateColumns="false"
    allowpaging="false"
             <Columns>       
                <asp:BoundField DataField="FinishDate" HeaderText="Finish Date"></asp:BoundField>
                <asp:TemplateField HeaderText="Time Spent By">
                   <ItemTemplate>
                       <asp:DropDownList id="ddlUsers" runat="server" ></asp:DropDownList>
                   </ItemTemplate>
                </asp:TemplateField>
            </Columns>
</asp:GridView>

In the code behind I need to call a function that updates the database when the drop down list is changed. 在后面的代码中,我需要调用一个在下拉列表更改时更新数据库的函数。 I have done this already for the FinishDate column so is there a similar way to do this for the drop down menu? 我已经为FinishDate列完成了此操作,因此对于下拉菜单有没有类似的方法?

Code behind: 后面的代码:

protected void gvBookings_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        BHTaskClass.BookingTask booking = (BHTaskClass.BookingTask)e.Row.DataItem;
         if (e.Row.RowType == DataControlRowType.DataRow)
         {
             foreach (TableCell c in e.Row.Cells)
             {
                if (count == 1)
                {
                    string FinishTime = booking.FinishTime.HasValue ? booking.FinishTime.Value.ToString("hh':'mm") : "";
                    c.Text = "<input type=\"text\" id=\"txtFinishTime" + booking.ID + "\" style=\"width:70px\" type=\"text\" onblur=\"UpdateFinishTime(" + booking.ID + ",this.value)\"   value=\"" + FinishTime + "\" >";
                }
                if (count == 2) 
                {
                    ddlUsers.SelectedValue = booking.TimeSpentName;
                }
                     count++;
             }
         }
    }

So when the FinishDate textbox is changed it calls the UpdateFinishTime function and this updates the database. 因此,更改FinishDate文本框时,它将调用UpdateFinishTime函数,并更新数据库。 How do I call a function for the drop down list? 如何为下拉列表调用函数?

ASPX ASPX

<asp:DropDownList id="ddlUsers" runat="server" 
       AutoPostBack="true" 
       OnSelectedIndexChanged="YourFunction_Changed">
</asp:DropDownList>

Code behind: 后面的代码:

protected void YourFunction_Changed(object sender, EventArgs e)
{
    //do stuff...
}

To get the Row ID you can do it as below 要获取行ID,您可以按照以下步骤进行操作

protected void YourFunction_Changed(object sender, EventArgs e)
{
   //do stuff...
   int Index = ((GridViewRow)((sender as Control)).NamingContainer).RowIndex;

  // your logic follows based on the Index 
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM