HI ,
I tried following code to implement paging Concept by using <PagerStyle Mode="Slider>.
Aspx:-
<div>
<!-- content start -->
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadGrid1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rcbPagerMode">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" />
<telerik:AjaxUpdatedControl ControlID="rcbPagerMode" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<!----->
<telerik:RadComboBox ID="RadComboBox1" Runat="server" Skin="Telerik">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</telerik:RadComboBox>
<telerik:RadGrid ID="RadGrid1" Skin="WebBlue" runat="server" AllowPaging="True" AllowCustomPaging="True"
PageSize="10" onneeddatasource="RadGrid1_NeedDataSource" >
<MasterTableView VirtualItemCount="100" />
<PagerStyle Mode="Slider"></PagerStyle>
</telerik:RadGrid>
</div>
Aspx.cs:-
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("server=.;database=Pubs;trusted_connection=true");
SqlDataAdapter dap = new SqlDataAdapter("select * from authors", con);
DataSet ds = new DataSet();
dap.Fill(ds, "authors");
this.RadGrid1.DataSource = ds.Tables[0];
this.RadGrid1.DataBind();
}
protected void RadGrid1_NeedDataSource(object source, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
{
}
Please guide me to Implemet paging with above example…
Thanks,
Ranganath.S
.EnableAdvancedForm = False
.StartEditingInAdvancedForm = False
.EnableAdvancedForm = False
.EnableResourceEditing = False
EnableTheming =
False

Hi,
im calling a radwindow from parent page and i need to call one more window from the first radwindow. I called it from the parent window by using the code
var oBrowserWnd = GetRadWindow().BrowserWindow;
oBrowserWnd.radopen(
"AssignUsers.aspx?Group_Id=" + GroupId, "AssignUsersWindow");
It is working fine. but when i click ok button in the 2nd radwindow, the window should close and the 1st window grid contents and parent window contents should be refreshed. but the window is not getting closed and the parent page is not getting refreshed.
Can anyone suggest me how to do these 2 tasks..
Thank you in advance