View Issue Details

IDProjectCategoryView StatusLast Update
0003692JEDI VCL00 JVCL Componentspublic2006-06-09 02:18
Reporterboerema1Assigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version3.30 
Summary0003692: JvStringGrid.SortGridByCols doesn't sort more than 1000 rows
DescriptionJvStringGrid.SortGridByCols doesn't completely sort more than 1000 rows because of this condition on line 1445 (revision 10436):

  until Sorted or (J = 1000);

Probably could be changed to

  until Sorted;
TagsNo tags attached.

Activities

obones

2006-06-09 02:18

administrator   ~0009514

Well, I think it's a safeguard against never sorting grids. So I changed it to RowCount + 1000.

Issue History

Date Modified Username Field Change
2006-05-07 13:47 boerema1 New Issue
2006-05-08 02:25 obones Status new => acknowledged
2006-06-09 02:18 obones Status acknowledged => resolved
2006-06-09 02:18 obones Resolution open => fixed
2006-06-09 02:18 obones Assigned To => obones
2006-06-09 02:18 obones Note Added: 0009514