Hello again.
There is a problem:
Use paging and summary row.
How to calculate the totals for all rows in the data source.
Thank you for your reply.
Hello.All clear.Please see question http://forums.infragistics.com/forums/t/56605.aspx.Thank you for your reply.
Hello Sergey,
Let me know if you need further assistance with this question.
You can calculate the number of records (rows) in your DataSource by using SQL procedure or by “Count” property of the “DataSet”:
int intCount;
intCount = ds.Tables["myTable"].Rows.Count;
Then you can put the number in the “DataSet” itself by creating a new column and add it to the “DataTable”:
http://msdn.microsoft.com/en-us/library/hfx3s9wd.aspx
Or you can put this number to HTML Hidden Field and use it on the page:
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.hiddenfield(v=vs.85).aspx
If you choose first approach you will have to hide the created column and use only the value inserted in it - http://help.infragistics.com/Help/NetAdvantage/ASPNET/2010.3/CLR4.0/html/Infragistics4.WebUI.UltraWebGrid.v10.3~Infragistics.WebUI.UltraWebGrid.UltraGridColumn~Hidden.html
Let me know if you need additional assistance.
Good afternoon.Can I get sample code for the procedure http://forums.infragistics.com/forums/p/27201/99968.aspx # 99968. I would be very grateful.Thank you for your reply.
Hello. Thank you for your reply. All clear.