View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003748 | JEDI VCL | 00 JVCL Components | public | 2006-06-06 12:14 | 2006-06-07 03:18 |
Reporter | anudedeus | Assigned To | obones | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 3.20 | ||||
Target Version | Fixed in Version | 3.30 | |||
Summary | 0003748: JvXPCheckbox doesn't answer to space bar pressing | ||||
Description | Apparently the authors forgot that checkboxes should toggle its state (checked/unchecked) when it has the focus and the spacebar is pressed. Fix: TJvXPCustomCheckControl = class(...) protected {add the line:} procedure KeyDown(var Key: Word; Shift: TShiftState); override; (...) end; implementation {add the following} procedure TJvXPCustomCheckControl.KeyDown(var Key: Word; Shift: TShiftState); begin if Key = VK_SPACE then Checked := not Checked; inherited KeyDown(Key, Shift); end; | ||||
Additional Information | Recompile JvXPCtrlsD7R.dpk after changes. (Delphi7, check correct name for other versions) | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2006-06-06 12:14 | anudedeus | New Issue | |
2006-06-06 12:17 | anudedeus | Note Added: 0009392 | |
2006-06-07 03:18 | obones | Status | new => resolved |
2006-06-07 03:18 | obones | Resolution | open => fixed |
2006-06-07 03:18 | obones | Assigned To | => obones |
2006-06-07 03:18 | obones | Note Added: 0009401 |