-1

我在表单中有一个 Radgrid 和 RadCombobox。在一个函数中,我正在调用一个 forloop。在那个 forloop 中,我正在为网格使用 Rebind 事件。在循环中,第一次去网格的NeedDataSource,从第二次没有发生Needdatasource事件,

当 Combobox 文本更改时,Grid 应该转到 NeedDataSource 事件。请帮忙。

for (int a = 0; a < EmpCodecmb.Items.Count; a++)
        {            
            EmpCodecmb.Text = EmpCodecmb.Items[a].Text;
            EmpCodecmb.SelectedValue = EmpCodecmb.Items[a].Value;

        SqlCommand cmd1 = new SqlCommand();
        con.Open();
        cmd1.Connection = con;
        cmd1.CommandType = CommandType.StoredProcedure;
        cmd1.Parameters.Clear();
        cmd1.CommandText = "get_EmpLeaveDetails";
        cmd1.Parameters.AddWithValue("@EmployeeID", EmpCodecmb.SelectedValue);
        cmd1.Parameters.AddWithValue("@SelectedMonth", commonDatetime);
        SqlDataReader sdp1 = cmd1.ExecuteReader();
        while (sdp1.Read())
        {
            CLtxt.Text = sdp1["CL"].ToString();
            ELtxt.Text = sdp1["EL"].ToString();
            LOPtxt.Text = sdp1["LOP"].ToString();
        }
        con.Close();

        Grid1.Rebind();
        Grid2.Rebind();

        Insert_f1();
        Insert_f2();
    }`
4

1 回答 1

0

我知道这已经有一段时间了,但我认为这可能会有所帮助: http: //nwije.blogspot.com/2011/04/telerik-radgrid-doesnt-fire.html

于 2013-04-26T17:09:53.287 回答