Telerik - 网格行内的图像按钮,获取第一个单元格的值
我有一个 RadGrid,其中包含一个模板列,我在其中放置了两个用于编辑和删除操作的图像按钮。
<telerik:GridTemplateColumn HeaderText="Actions">
<ItemTemplate>
<asp:ImageButton ID="btnEdit" runat="server" ImageUrl="~/images/icon_edit.png" style="display: inline-block" ToolTip="Edit" /> <asp:ImageButton ID="btnDelete" runat="server" ImageUrl="~/images/icon_delete.png" style="display: inline-block" ToolTip="Delete" />
</ItemTemplate>
</telerik:GridTemplateColumn>
当我单击“删除”按钮时,如何获取该行第一个单元格(datafield =“User_ID”)的值?
I have a RadGrid that contains a template column in which I've put two image buttons for edit and delete actions.
<telerik:GridTemplateColumn HeaderText="Actions">
<ItemTemplate>
<asp:ImageButton ID="btnEdit" runat="server" ImageUrl="~/images/icon_edit.png" style="display: inline-block" ToolTip="Edit" /> <asp:ImageButton ID="btnDelete" runat="server" ImageUrl="~/images/icon_delete.png" style="display: inline-block" ToolTip="Delete" />
</ItemTemplate>
</telerik:GridTemplateColumn>
How would get the value of the first cell of the row (datafield = "User_ID") when I click on the "delete" button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第 1 步。
转到 Radgrid 本身并编辑字段 DataKeyNames=""(在 MasterTableView 下)并添加您要提取的数据字段:
第 2 步。
编辑位于网格中的图像按钮的 CommandName="" 属性:
为 Radgrid 创建以下方法并添加以下代码:
确保 UserId = 相同的类型 (int,double,dec... )作为它从中提取的字段,否则您将不得不解析它:
如果您需要更多帮助,请告诉我。
Step 1.
Go to the Radgrid itself and edit the field DataKeyNames="" (under MasterTableView) and add the datafield you are pulling:
Step 2.
Edit the CommandName="" property of the Imagebuttons located in the grid:
Create the following method for your Radgrid and add this code:
Make sure theUserId = the same Type (int,double,dec...) as the field it's pulling from or you will have to parse it:
Let me know if you need more help.
请检查下面的代码片段。
……………………
Please check Below code snippet.
.........................