Gnani
Gnani

Reputation: 465

RowCommand not getting fired on Dynamically created GridView

I am creating a gridview dynamically with a ButtonField and several BoundFields. ButtonField button type is LinkButton. If i run it the buttonclick triggers a post back but rowCommand is not triggered. It is not triggered even if i use AutogenerateSelectButton. The event is dyanamically bound. Code As follows:

    protected void B_Search_Click(object sender, EventArgs e) //Search buttonclick that creates and displays the gridview
    {
        gd = getGridView(); //defines the gridview with columns and buttonfield

        gd.DataSource = executeAdvanceSearch(); //retrieves data from DB as Dataset
        gd.DataBind();

        gd.RowCommand += new GridViewCommandEventHandler(gdView_RowCommand); //Rowcommand event binding
        PlaceHolder1.Controls.Add(gd);
    }

    protected void gdView_RowCommand(object sender, GridViewCommandEventArgs e) //not getting triggered on postback
    {
        int index = Convert.ToInt32(e.CommandArgument);

        GridView gdView = (GridView)sender;

        if (e.CommandName == "IDClick")
        {
           //Do something
        }
    }


    private GridView getGridView()
    {
        GridView gdView = new GridView();
        gdView.AutoGenerateColumns = false;

        gdView.AutoGenerateSelectButton = true;

        string name;

        string[] field = ZGP.BLL.Search.getResultFormat(Convert.ToInt32(DDL_ResultView.SelectedValue), out name); //Ignore.  This jst gets columnNames

        if (field.Count() != 0)
        {
            gdView.Columns.Add(getSelectButton()); //Adds linkbutton

            foreach (string cName in field) //ignore. This adds columns.
                if (!String.IsNullOrEmpty(cName))
                {
                    gdView.Columns.Add(GV_DataColumn.getGridViewColumn((DataColumnName)Enum.Parse(typeof(DataColumnName), cName))); //Ignore. adds columns 
                }
        }

        return gdView;
    }

    private ButtonField getSelectButton()
    {
        ButtonField _bf = new ButtonField();
        _bf.ButtonType = ButtonType.Link;
        _bf.HeaderText = "ID";
        _bf.DataTextField = "ID";
        _bf.CommandName = "IDClick";
        return _bf;
    }

Thanks for the help.

Upvotes: 0

Views: 2176

Answers (2)

Sohail
Sohail

Reputation: 11

if (e.CommandName=="CommandName")
    {
        int index = Convert.ToInt32(e.CommandArgument);
        GridViewRow row = GridView1.Rows[index];
        string boundFieldText= row.Cells[0].Text;
    }

Upvotes: 1

ScottE
ScottE

Reputation: 21630

You'll need to create the grid view on each postback.

Upvotes: 0

Related Questions