473,789 Members | 2,806 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VirtualItemCoun t in datagrid.

Hi all,

Can anyone tell me what exactly VirtualItemCoun t in datagrid. I read
on msdn but not clear about it.

Any help will be truely appreciared.

thanks in advance

Apr 12 '07 #1
3 2700
Hi there,

Imagine you want to display a pager below a datagrid in order to allow users
to navigate through data query results returned from database. In 99%
applications results are displayed in paged form, meaning user is presented
with a small chunk of results, i.e. search result returned 1350 records, but
due to several reasons (perfomance, user experience, etc.) your list shows
only 10 records at time. I believe you know all that. DataGrid has got built
in mechanism for paging which is based on entire result set assigned to
datagrid's datasource property. It requires all the records to be included in
paging, which means if you wanted to display only 10 records in 10th page
from your result set (records from 91 to 100) you would have to fetch entire
result set (1350 rows) locally (transfer all the records from database to
local's machine memory). As you can guess it is very inefficient. Therefore,
developers invented much better techniques (custom paging) allowing fetching
required information only . Most of them require page number (or start row
index) and page size (or end row index), but please note to display pager
properly (i.e. show/hide next page button) you have to know how many rows
(pages) are within result set (i.e. query returned 1350 rows, current page =
2, you should show previous and next buttons because you know there are
records before and after as number of matching records is 1350). And here
comes virtualitemcoun t property which holds total number of rows matching
criteria, which in this case would be 1350. I know it might sound difficult,
but it's easire to understand it on real life example presented by one of
this asp.net community guys Peter Bromber:

http://www.eggheadcafe.com/articles/20060109.asp

Hope this helps

--
Milosz
"archana" wrote:
Hi all,

Can anyone tell me what exactly VirtualItemCoun t in datagrid. I read
on msdn but not clear about it.

Any help will be truely appreciared.

thanks in advance

Apr 13 '07 #2
Hi,

thanks for your reply.

but still i have one confusion regarding virtualitemcoun t. Does
navigation bar displayed at the bottom of datagrid showing page number
depends on virtualitemcoun t?

Does it means i need to set virtualitemcoun t to total number of
records which present in table which i am displaying page by page into
datagrid?

if yes then does it means that every time going from one page to
another i need to fire query into database passing current page index
and retrieving those many records from database according to page
size?

Please correct me if i am wrong.

thanks in advance.

Apr 13 '07 #3
Hi there Archana,
Howdy. Seems you got it right but you're missing relationship between all
the variables (especially virtualitemcoun t - pagecount). Let's analyse a real
life example.

PageSize = 10 (number of records being displayed in datagrid control at once)
VirtualItemCoun t = 35 (number of records matching criteria)

Case 1. First page is selected (CurrentPageInd ex = 0)
Total number of pages:
PageCount = (VirtualItemCou nt+PageSize - 1) / PageSize = (35 + 10 - 1) / 10
= 4
so the data grid should look like this:
1. | blabla |
2. | blabla |
3. | blabla |
.....
10. | blabla |
[1] 2 3 4 >

as you can see, virtualitemcoun t = 35 so you may display buttons pages
2,3,4. Because this is the first page you cannot move to previous page (<
button is invisible)

Case 2. Now we moved to second page.

11. | blabla |
12. | blabla |
13. | blabla |
.....
20. | blabla |
< 1 [2] 3 4 >
There are 4 pages, 2nd is currently selected, we can display prev/next
buttons as there are records before and after.

Case 3. And finally we selected last page
31. | blabla |
32. | blabla |
33. | blabla |
34. | blabla |
35. | blabla |
< 1 2 3 [4]
VirtualItemCoun t literally represents the last item index.
if yes then does it means that every time going from one page to
another i need to fire query into database passing current page index
and retrieving those many records from database according to page
size?
Yes you have to go to database to get result for currently selected page. In
our examples you would have to run queries to get records with sequence
number within result set
Case 1) from 1 to 10
Case 2) from 11 to 20
Case 3) from 31 to 40 but due to the fact there are only five records on
this page you would get records from 31 to 35.

It it clear now?

Best regards

Milosz
Apr 13 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
7934
by: Ashish Shridharan | last post by:
Hi All I have been trying to add a control to the header cell of a datagrid on my ASP.NET page. These controls are defined in the HTML as ASP.NET web controls. They are being added into the header of the datagrid in the "ItemDataBound" method of the grid. However, once, they are added in the grid, i seem to lose the event handler for the same control. Is there anyone who has tried this before and knows why this is hapenning ??
3
4273
by: Bill C. | last post by:
Hello, I know this has been discussed a lot already because I've been searching around for information the last few weeks. I'm trying to implement a DataGridComboBoxColumn class. I've found several examples on the web. They all seem to have problems, though that I've been unable to resolve. The most promising example I have found is at:
5
9178
by: BBFrost | last post by:
Win2000 ..Net 1.1 SP1 c# using Visual Studio Ok, I'm currently in a "knock down - drag out" tussle with the .Net 1.1 datagrid. I've come to realize that a 'block' of rows highlighted within a datagrid do >> not << constitute a set of 'selected' records. Apparently one and only one row may be 'selected' in a datagrid. By selected row I mean the row
2
4335
by: pei_world | last post by:
I want to implement a key hit with enter to dropdown a combobox that is in the datagrid. in this case I need to override its original behaviours. I found some codes from the web. Does anyone know how to use this code? please help! http://www.experts-exchange.com/Programming/Programming_Languages/C_Sharp/Q_20862953.html
0
1674
by: mgenti | last post by:
I am experiencing a problem when I add a row to a DataTable that is used on a DataGrid in my Windows Form application. When I add a new row I no longer get a response from my form. I see the row apear in the DataGrid but still no response from the form. If I add the same data to a rich text box and don't use the datagrid I don't have this problem. What am I missing? It has to be something simple. Here is my code snipet: private...
1
4341
by: Rick | last post by:
Hello all, I hope all is well with you. I am having a seriously difficult time with this problem. Allow me to set up the problem. I have a System.Web.UI.Page with the following controls (watch the layout, some have child controls):
2
6414
by: CSL | last post by:
I am using the DataGrid in a Windows Application, how can I adjust the widths of each column individually.
7
5690
by: Dave | last post by:
Are there any add-on products or samples available that can do the following in an vb.net datagrid I want to compare 2 rows in a datagrid - one row from one database and another row for another database. So all the even rows would be from database one. All the odd rows would be from database two. Row one and two will have different formats and colors.
1
4596
by: Kamen | last post by:
Hello there, has the GridView control in ASP.NET a property like the VirtualItemCount of the DataGrid control? I am very appreciated for your help. Kamen
0
10412
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10200
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10142
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9986
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6769
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5422
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5551
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3703
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2909
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.