View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003985 | JEDI VCL | 00 JVCL Components | public | 2006-11-05 23:05 | 2007-01-04 10:41 |
Reporter | EinWill | Assigned To | outchy | ||
Priority | normal | Severity | feature | Reproducibility | N/A |
Status | resolved | Resolution | fixed | ||
Product Version | 3.20 | ||||
Target Version | Fixed in Version | 3.30 | |||
Summary | 0003985: Pressing "Esc" in TJvDBSpinEdit should reset the value from database | ||||
Description | Right now "Esc" key is ignored. While logically it should reset the spin value. Solution: JvDbSpinEdit can override protected method KeyPress like this: ------------------------------------------------------------- procedure TJvDBSpinEdit.KeyPress(var Key: Char); begin if Key=0000027 then begin FDataLink.Reset; SelectAll; Key := #0; end; inherited; end; ------------------------------------------------------------- | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2006-11-05 23:05 | EinWill | New Issue | |
2007-01-04 10:39 | outchy | Status | new => resolved |
2007-01-04 10:39 | outchy | Fixed in Version | => Daily / SVN |
2007-01-04 10:39 | outchy | Resolution | open => fixed |
2007-01-04 10:39 | outchy | Assigned To | => outchy |
2007-01-04 10:39 | outchy | Note Added: 0010539 |