Updated: This post originally come from this http://xceed.com/CS/forums/13915/ShowThread.aspx#13915
Hello,
Let's say I have 30 records in my list and I bind this list to datagrid. The height of my datagrid is not long enough to show all rows of datagrid so only 10 rows are visible in datagird.
When I was trying to loop through the row of datagird, I found that I got only 10 rows which are visible in datagrid. If I scroll down a bit, the row will be dynamically geneated. I don't want this feature.
I tried to check the rows of datagrid by using Snoop and found that the row are dynamically created when the user moves the scrollbars.
So, my question is: How can I force the datagrid to show all rows (30 rows) even those are not visible? How can I disable "lazy-binding" from Datagrid? So, I can get all rows from looping.
Thanks in advance.