Hi,
Base on this example:
http://www.telerik.com/community/code-library/wpf/gridview/radgridview-print-and-print-preview.aspx
I made a custom reporting service for our home application needs. I installed 2010 Q3 SP1 Telerik new controls, and I steel have problem with this specific line:
element.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
When the grids as too much rows (3000 can go over 300 000) that throw a out of memories exceptions in the print preview. I read a couple of article on Telerik forum that said that this issue was supposed to be fixed in Q3… and can be cause by GridViewRowInfo objects which occupy most of the memory…
Can you please help me with that?
Gabriel
Hi,
I have a custom column which is a user control inheriting from GridViewColumn and has two button (add row, and remove row) basically to allow users who relay to keyboard only for data entry to tab through the row cells until the reach the last column and then have the ability to add a new row and go one with the data entry.
The problem is the tabbing order is not consistent, for example, when the user is row 4 and they are tabbing in though data bound rows, when it comes to the button Colum, it the button on the first row that gets the focus (not the same 4th row).
Any advice?