Hello all,
I am novice in Teleric Ajax Controls and i have the following questions:
Is it possible to develop a grid with the following characteristics?
I have also read about client caching at Teleric documentation but i have noticed that at each
reload i must perform:
protected void Page_Load(object sender, EventArgs e)
{
DataSet ds = GetImageBlink();
RadGrid1.DataSource = ds;
RadGrid1.DataBind();
}
I don't understand where is client caching involved?
I must perform client binding in order to have client cashing?
Thanks in advance
I am novice in Teleric Ajax Controls and i have the following questions:
Is it possible to develop a grid with the following characteristics?
- Paging, sorting, filtering, and grouping are performed on the client;
- No requests are made to the server after the initial page load;
I have also read about client caching at Teleric documentation but i have noticed that at each
reload i must perform:
protected void Page_Load(object sender, EventArgs e)
{
DataSet ds = GetImageBlink();
RadGrid1.DataSource = ds;
RadGrid1.DataBind();
}
I don't understand where is client caching involved?
I must perform client binding in order to have client cashing?
Thanks in advance