Re: GridView RowCommand event not firing!!
- From: "Kevin Attard" <kevin@xxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 8 Aug 2006 17:39:20 +0200
The reason of wiring the events at runtime is because I am creating a
dynamic form from the database. Controls are created depending on the data
of the database.
Sorry, the code should have been like this: I'm using the constructor not
the pageload event
public myUserControl()
{
SetLinkedTable(GetSource())
}
This constructor is called in the overidden method CreateChildControls() of
another usercontrol
( the form creator usercontrol)
"clickon" <clickon@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:85DC3B34-DBF8-4FCF-84A2-CA64DC629826@xxxxxxxxxxxxxxxx
Again i think you are coming up against an order events fire type problem,
you are hooking up your GridView event handlers programatically in the
PageLoad event, how do you know that the PageLoad event fires before the
RowCommand event, if the RowCommand event fires before the PageLoad event
then the event has already happened before you even wire up the event
handler.
Again i can't see any good reason for hooking up your event handlers
programatically from your code, the reason you do that usually is if the
control to which you are hooking up the event handlers has also been
created
programatically. If you are creating the GridView declaritively in the
mark
up then also wire up your event handlers like this.
"Kevin Attard" wrote:
I've tried it but it still wont fire the event.
Here is the code:
protected void Page_Load(object sender, EventArgs e)
{
SetLinkedTable(GetSource())
}
private void SetLinkedTable(DataTable source)
{
gvLinkedTable = (GridView)skin.FindControl("gvLinkedTable");
AttachEvents();
gvLinkedTable.DataSource = source;
gvLinkedTable.DataBind();
this.Controls.Add(skin);
}
private void AttachEvents()
{
gvLinkedTable.RowCommand +=new
GridViewCommandEventHandler(gvLinkedTable_RowCommand);
gvLinkedTable.RowDataBound += new
GridViewRowEventHandler(gvLinkedTable_RowDataBound);
}
private void gvLinkedTable_RowCommand(object sender,
GridViewCommandEventArgs e)
{
if (e.CommandName == "Delete")
{
int pk = Convert.ToInt32(e.CommandArgument);
DeleteItem(pk);
SetLinkedTable(dt);
}
}
"clickon" <clickon@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:D8037D2C-2F7F-427C-AC9B-B4BCF8065C3A@xxxxxxxxxxxxxxxx
The order that event handlers execute can cause this kind of problem.
Why
are
you setting the command argument of the delete button in the
RowDataBound
event, why not just declare it in the markup? Try that and see if the
RowCommand event fires.
"Kevin Attard" wrote:
I am using a GridView inside a UserControl which has a template column
for
deleting the rows. Before databinding the gridview i am attaching the
RowCommand and RowDataBound event.
I am using the RowDataBound event to set the commandargument of the
delete
button. The event is being fired and works fine.
When I press the delete button, the RowCommand event is not firing!
and
neither is the RowDeleting (the button's commandName is "Delete")
Any idea why?
.
- References:
- GridView RowCommand event not firing!!
- From: Kevin Attard
- Re: GridView RowCommand event not firing!!
- From: Kevin Attard
- Re: GridView RowCommand event not firing!!
- From: clickon
- GridView RowCommand event not firing!!
- Prev by Date: How to open a word document saved in sql server in asp.net when using windows XP/2003
- Next by Date: Re: [Javascript] problem with ResponseXml.
- Previous by thread: Re: GridView RowCommand event not firing!!
- Next by thread: Re: GridView RowCommand event not firing!!
- Index(es):