The datakey tag has no wiki summary.
10
votes
2answers
16k views
Get DataKey values in GridView RowCommand
I have a GridView with an associated DataKey, which is the item ID.
How do I retrieve that value inside the RowCommand event?
This seems to work, but I don't like the cast to LinkButton (what if some ...
2
votes
2answers
562 views
Telerik - Image button inside a Grid row, getting value of first cell
I have a RadGrid that contains a template column in wich I've put two image buttons for edit and delete actions.
<telerik:GridTemplateColumn HeaderText="Actions">
<ItemTemplate>
...
1
vote
0answers
192 views
Retrieve value of complex object bound to gridview control
The gridview control makes databinding of complex objects rather easy. In my scenario a gridview control gets bound to a Customer object which has a few 'flat' properties and one complex property that ...
1
vote
2answers
679 views
GridView Paging, unable to get the correct Datakey value
GridView
<asp:GridView ID="GridView1" runat="server" AllowPaging="True"
AllowSorting="True" PagerSettings-Position="TopAndBottom"
PagerSettings-Mode="Numeric" PageSize="40" ...
0
votes
1answer
121 views
DataKeyNames issue with my GridView
I've been having this problem with my DataKeyNames value. The primary key of each row is the GameID but whenever I set the DataKeyNames equal to the GameID, it doesn't work.
I am enabling selection ...
0
votes
0answers
113 views
unable to access gridview datakeys of usercontrol in parent page
I have a gridview in a user control and it has two columns. One of them is a dropdown list and the other is a label containing the name of dropdown list.
<asp:GridView ID="GridView1" ...
0
votes
1answer
512 views
Telerik/radgrid Equivalent (Find row items/values)?
Does anyone know the Telerik/radgrid equivalent of the following statement?
e.InputParameters["id"] =
Convert.ToString(myRadgrid.DataKeys[myradgrid.SelectedIndex].Value);
I'm trying to find the ...