View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002602 | JEDI VCL | 00 JVCL Components | public | 2005-02-04 10:32 | 2005-04-22 05:36 |
Reporter | Xigi | Assigned To | obones | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | |||||
Target Version | Fixed in Version | 3.10 | |||
Summary | 0002602: JvDBGrid ignores AutoAppend = False in Edit State | ||||
Description | In TJvDbGrid Pressing down arrow key on the last record inserts new line even with AutoAppend = False, if dataset is in dsEdit state. (Start to edit a field, then press down arrow) Thx a lot | ||||
Tags | No tags attached. | ||||
|
Had the same problem, try my work around procedure TFormMain.dbgKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin if (Key = VK_DOWN) or (Key = VK_TAB) or (Key = VK_UP) or (Key = VK_RETURN) then begin if Self.dbg.Dataset.fieldbyname('firstfield').IsNull then Self.dbg.Dataset.cancel; end; end; |
|
This is now solved in CVS |
Date Modified | Username | Field | Change |
---|---|---|---|
2005-02-04 10:32 | Xigi | New Issue | |
2005-04-01 08:14 | barbarochi | Note Added: 0006821 | |
2005-04-22 05:36 | obones | Status | new => resolved |
2005-04-22 05:36 | obones | Resolution | open => fixed |
2005-04-22 05:36 | obones | Assigned To | => obones |
2005-04-22 05:36 | obones | Note Added: 0007038 |