View Issue Details

IDProjectCategoryView StatusLast Update
0001558JEDI VCL00 JVCL Componentspublic2004-04-02 09:23
ReporternestorAssigned Touser72 
PrioritynormalSeverityfeatureReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001558: JvDBGrid, Allow the move of customized column
DescriptionI suggest to allow the move of customized column even if "dgRowSelect" is in grid "options". That is the width and index of those columns are restored correctly (not like default columns).

I propose to replace this code in JvDBGrid. MouseDown

if dgRowSelect in Options then
  inherited MouseDown(Button, Shift, 1, Y)
else
  inherited MouseDown(Button, Shift, X, Y)
By

if (dgRowSelect in Options) and (Columns.State <> sCustomized) then // = csDefault
  inherited MouseDown(Button, Shift, 1, Y)
else
  inherited MouseDown(Button, Shift, X, Y)

regards
TagsNo tags attached.

Activities

user72

2004-04-02 09:23

  ~0003581

Fixed in CVS

Issue History

Date Modified Username Field Change
2004-04-01 13:05 nestor New Issue
2004-04-02 09:23 user72 Status new => resolved
2004-04-02 09:23 user72 Resolution open => fixed
2004-04-02 09:23 user72 Assigned To => user72
2004-04-02 09:23 user72 Note Added: 0003581