2011-08-04 46 views
0

我正在使用Telerik RadGrid.i将数据(即10行)绑定到带寻呼的radgrid。页面设置为每页5个。radgrid为高层次模式。如何从按下按钮时从radgrid获取页面记录

我是拿到第一页的记录,只有当用户点击button.which我需要发送mail.how可以retrive所有数据

+0

请http://www.telerik.com/社区/论坛/ ASPNET /格/检索 - 所有最记录功能于radgrid控件,saving.aspx –

回答

0
RadGridAllocateEmployee.AllowPaging = False 
RadGridAllocateEmployee.Rebind() 
     'Your code 
For Each item As GridDataItem In RadGridAllocateEmployee.MasterTableView.Items 
. . . . . . . 
Next 
RadGridAllocateEmployee.AllowPaging = True 
RadGridAllocateEmployee.Rebind()