extended gridview direct databind OnRowUpdating event does not fire

wuz

Joined
Aug 10, 2008
Messages
1
Reaction score
0
Hi,

I am facing a serious problem or even bug. I am using direct databinding on an extended gridview which i can send into edit mode with a simple <asp:CommandField ShowEditButton="True" />.

There the edit and cancele vent got triggered correctly and i take care of them

protected override void OnRowEditing(GridViewEditEventArgs e)
{
this.EditIndex = e.NewEditIndex;
RebindData();
}

protected override void OnRowCancelingEdit(GridViewCancelEditEventArgs e)
{
this.EditIndex = -1;
RebindData();
}

But unfortunately OnRowUpdating is never triggered wen i click on the generated update button.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,276
Latest member
Sawatmakal

Latest Threads

Top