Currently i m working as developer. i am new to infragisitcs Ultraweb grid tool.
facing some techinical issue in ultraweb grid. i have 100,000 records in the database. if i load the all the records from the server. it cause time out error. i planning to show only 20 records record per pages but the paging should be 100,000. for ex 100,000/20 = 5000. i want to get the records when i select the paging controls in ultraweb grid.
Is there any possiable to customize the ultrawebgrid control as per my request.
Reg
Ramesh P.
<%
<
<!--
alert(
}
{
// -->
</
Private Function GetGridData(Optional ByVal ExcelAll As Boolean = False) As Boolean
UltraWebGrid1.DisplayLayout.Pager.PageSize = 50
UltraWebGrid1.Width = Unit.Percentage(100)
UltraWebGrid1.Height = Unit.Percentage(100)
UltraWebGrid1.DisplayLayout.SelectTypeRowDefault = Infragistics.WebUI.UltraWebGrid.SelectType.Single
UltraWebGrid1.DataSource = dsLists
UltraWebGrid1.DataKeyField =
UltraWebGrid1.DataBind()
This calles a simple select * from and binds it.
Thanks.
I does not seem right, I've seen the grid work with thousands and even millions of records (with the correct datasource management) and even in this case - the end result would be slowness rather than exception.
The best way to proceed in this situation I believe is to send a small subset of your project reproducing the issue to our Developer Support folks - they can be reached via this link
http://www.infragistics.com/gethelp/default.asp
If we have a repro, it will be easier to figure out what is going on.
It seems to error around 3100 records for me. Anything below, is ok. Am I missing a setting or something?
Well I shrunk my dataset size and the issue seemed to go away. But why is there a limit? And why is the paging size not helping?