Hi I insert radinput in Template Column gird .
Now I want To get the row index that the radinput is in that grid when key press happen at the client side for that radinput
. how can do it ?
Now I want To get the row index that the radinput is in that grid when key press happen at the client side for that radinput
. how can do it ?
| <!------------Radgridname =RadGrid1---------------> |
| <telerik:GridTemplateColumn DataField="Name_Item" HeaderText="type description" |
| UniqueName="column1"> |
| <ItemTemplate> |
| <telerik:RadTextBox ID="RadTextBox3" Runat="server" Width="100%"> |
| <ClientEvents OnKeyPress="keypress" /> |
| </telerik:RadTextBox> |
| </ItemTemplate> |
| <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="350px" /> |
| <ItemStyle HorizontalAlign="Center" Width="350px" /> |
| </telerik:GridTemplateColumn> |
| ....... |
| function keypress(sender, eventArgs) |
| { |
| //??????? I want row index , when click on radinput or any key press row selected event not call then I cant get row index with |
| //row selected event |
| } |