| Article Discussion: Implementing Continuous Scrolling UI Pattern in ASP.NET |
| mv ark posted at Saturday, February 28, 2009 5:57 AM |
 | Original Article |
 |
| |
|
| How to set GridView Row properties using Infinite Scrolling |
| khushi2005 khushi replied to mv ark at Tuesday, October 27, 2009 12:09 PM |
Hi
I have implemented your solution and it works the way it should work
I also tried implementing using DataTable and everything works fine with putting code at runtime
Now my problem is the first column in Gridview is a Image Template Field
In order to use Row_Command property I have to set the index of each image
using code like this
for (int iRows = 0; iRows < XGrid1.Rows.Count; iRows++)
{
GridViewRow myRow = XGrid1.Rows[iRows];
ImageButton b = (ImageButton)myRow.Cells[1].FindControl("imgbtnShow");
b.CommandArgument = indexItem.ToString(); //this index keeps track of which image is clicked
indexItem = indexItem + 1;
}
Here in this article we create a StringBuilder and append the table rows to it
I do not know how we could do it using this articl
Thanks for your help
|
 |
| |
|
Need Guidence |
| Hasnain Haider replied to mv ark at Monday, January 18, 2010 3:03 AM |
| I am unable to implement this pattern - could you please provide project for download in vb ... |
 |
| |
|
re: Article Discussion: Implementing Continuous Scrolling UI Pattern in ASP.NET |
| viswa rao replied to mv ark at Saturday, April 10, 2010 5:11 PM |
I could not download Jquery 1.2.6. So I used jquery-1.4.2.min.js
I copied all your code.
After compiling and running it shows a page with empty box with no gridview in it. How I can I debug or find out what is wrong? |
 |
| |
|
re: Article Discussion: Implementing Continuous Scrolling UI Pattern in ASP.NET |
| Ghawadi replied to mv ark at Tuesday, May 04, 2010 8:48 AM |
| I tried to implement what is in the article, the grid was loaded with data at the initial load, but when scrolling down nothing happen! I used the jquery.min.js is it possible to upload a sample project? |
 |
| |
|