View Issue Details

IDProjectCategoryView StatusLast Update
0004378JEDI VCL00 JVCL Componentspublic2008-10-29 06:23
Reporterkraikov2Assigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version 
Summary0004378: TJvInspector inplace editors doesn't recieve VK_RETURN and VK_ESCAPE
DescriptionThe TJvInspector inplace editor returns wrong result when process the WM_GETDLGCODE which leads to VK_RETURN and VK_ESCAPE goes to default buttons on modal form.

this is the patch which fix the problem for me:

--- JvInspector.pas (revision 11802)
+++ JvInspector.pas (working copy)
@@ -5946,8 +5946,9 @@
   case Msg.Msg of
     WM_GETDLGCODE:
       begin
- if Inspector.WantTabs then
- Msg.Result := Msg.Result or DLGC_WANTTAB;
+// if Inspector.WantTabs then
+// Msg.Result := Msg.Result or DLGC_WANTTAB;
+ Msg.Result := Msg.Result or DLGC_WANTALLKEYS;
       end;
     WM_SETFOCUS:
       begin
TagsNo tags attached.

Activities

obones

2008-06-19 04:19

administrator   ~0014342

This is not acceptable as it will ignore the "WantTabs" value.

obones

2008-10-29 06:22

administrator   ~0014931

No news, closing the issue. Please create a new one if this is still present in the latest SVN version.

Issue History

Date Modified Username Field Change
2008-06-19 00:04 kraikov2 New Issue
2008-06-19 04:19 obones Note Added: 0014342
2008-06-19 04:19 obones Status new => feedback
2008-10-29 06:22 obones Status feedback => resolved
2008-10-29 06:22 obones Resolution open => fixed
2008-10-29 06:22 obones Assigned To => obones
2008-10-29 06:22 obones Note Added: 0014931