View Issue Details

IDProjectCategoryView StatusLast Update
0002653JEDI VCL00 JVCL Componentspublic2005-02-18 04:10
ReporteranonymousAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.00 BETA 2 
Target VersionFixed in Version3.00 
Summary0002653: TJvWizard: The "Default" property for the "Next" or "Finish" button is hardcoded; need to publish this property
DescriptionTJvWizard: Because the "Next" or "Finish" buttons are hardcoded to have either of them set as the default, you are unable to have a VK_RETURN on a edit box or similar component. You need to publish the "Default" property for these buttons so one can turn this off if needed.
Additional InformationThis where it is hard coded.

{ YW - Set Default Button, Next Button has the higher priority than
     the Finish Button. }
  if (bkNext in AVisibleButtonSet) and (bkNext in AEnabledButtonSet) then
    FNavigateButtons[bkNext].Control.Default := True
  else
  if (bkFinish in AVisibleButtonSet) and (bkFinish in AEnabledButtonSet) then
    FNavigateButtons[bkFinish].Control.Default := True;
TagsNo tags attached.

Activities

AHUser

2005-02-18 04:10

developer   ~0006513

Added published property DefaultButtons: Boolean to TJvWizard

Fixed in CVS.

Issue History

Date Modified Username Field Change
2005-02-17 22:10 anonymous New Issue
2005-02-18 04:10 AHUser Status new => resolved
2005-02-18 04:10 AHUser Resolution open => fixed
2005-02-18 04:10 AHUser Assigned To => AHUser
2005-02-18 04:10 AHUser Note Added: 0006513