vote up 1 vote down star

I have a Gridview with ImageButtons added to a column via a templatefield. I've attached a function to the "OnClick" event.

Once in this function, how can I get the index of the row that has the button that has been clicked. It appears that all I have is the mouse coordinates on the page.

flag

6 Answers

vote up 2 vote down check

Insteading of looping through the rows u can use this

<asp:ImageButton runat="server" id="ibtn1" ... RowIndex='<%# Container.DisplayIndex %>' 
OnClick="button_click"/>

...

protected void button_click(object sender, EventArgs e){
ImageButton ibtn1 = sender as ImageButton;
int rowIndex = Convert.ToInt32(ibtn1.Attributes["RowIndex"]);

//Use this rowIndex in your code
}

Hope this helps you!!!

link|flag
Sweet - this is more efficient - I'll integrate it. – Jeffrey Jan 21 at 19:32
Changing my answer to this, since this is closer to the solution I actually implemented. I ended up setting the TabIndex value, and looked at that. How do you use "RowIndex"? is that a custom attribute? – Jeffrey Jan 21 at 20:58
Awesome Answer!!! – Eric Dec 4 at 18:34
vote up 0 vote down

This is very good trick. I have another trick also. You can try it...

protected void userGridview_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "Select") { GridViewRow rowSelect = (GridViewRow)(((Button)e.CommandSource).NamingContainer); int rowindex = rowSelect.RowIndex; } }

It's a also good method.

link|flag
vote up 1 vote down

Would agree with bdukes that the simplest option is to use the CommandArgument. Bind your data's unique ID number into that property, then handle the _RowCommand event.

For example: ' ToolTip="iCal" runat="server" Height="18" Width="18" />

    Protected Sub gv_RowCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles gv.RowCommand

       e.CommandArgument    'use this value in whatever way you like

    End Sub
link|flag
vote up 0 vote down

**

strong text

**This is fablous

link|flag
vote up 1 vote down

Cast the sender to an ImageButton then cast the image button's NamingContainer to a row:

VB:

Dim btn as ImageButton = CType(sender, ImageButton)

Dim row as GridViewRow = CType(btn.NamingContainer, GridViewRow)

C#:

ImageButton btn = (ImageButton)sender;

GridViewRow row = (GridViewRow)btn.NamingContainer;

link|flag
good solution..........worked for me – Pankaj Kumar Nov 20 at 7:36
vote up 2 vote down

The easiest way that I've found is to use the Command event over the Click event, and send the item ID as the command argument.

You could also loop over the rows in the GridView and compare the ImageButton in the row to the sender argument in your Click event.

link|flag
I do this all the time with GridView bindings. It is great! – Dillie-O Jan 21 at 19:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.