![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a gridview with a textbox in an ItemTemplate, as below. The OnTextChanged event fires okay but how do I pass a parameter to it, I get an error when I try "OnTextChanged(""SomeData"")". I would also like to pass in the value of column 1. I would also like to be able to get the row the user is on when this event fires. Thank you for your help. asp:GridView ID="gv" / Columns asp:BoundField DataField="Col1" HeaderText="Column 1"/ asp:TemplateField HeaderText="Column2" ItemTemplate asp:TextBox ID="txt" OnTextChanged="OnTextChanged" Autopostback=true Columns=15 runat="server" Text='<%# Bind("Column2Data") %>'></asp:TextBox /ItemTemplate /asp:TemplateField Protected Sub OnTextChanged(ByVal sender as Object, ByVal e as EventArgs) 'some procedures here End Sub |
#3
| |||
| |||
|
|
You don't need to pass, you can figure it out in the event handler. The sender parameter points on the textbox. The textbox is inside a TableCell. The TableCell is inside a row. With this understanding you can navigate up from the sender to the containing row using Parent property. -- Eliyahu Goldin, Software Developer Microsoft MVP [ASP.NET] http://msmvps.com/blogs/egoldin http://usableasp.net tester> wrote I have a gridview with a textbox in an ItemTemplate, as below. The OnTextChanged event fires okay but how do I pass a parameter to it, I get an error when I try "OnTextChanged(""SomeData"")". I would also like to pass in the value of column 1. I would also like to be able to get the row the user is on when this event fires. Thank you for your help. asp:GridView ID="gv" / Columns asp:BoundField DataField="Col1" HeaderText="Column 1"/ asp:TemplateField HeaderText="Column2" ItemTemplate asp:TextBox ID="txt" OnTextChanged="OnTextChanged" Autopostback=true Columns=15 runat="server" Text='<%# Bind("Column2Data") %>'></asp:TextBox /ItemTemplate /asp:TemplateField Protected Sub OnTextChanged(ByVal sender as Object, ByVal e as EventArgs) 'some procedures here End Sub |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |