monkeyxu / dcef3

Automatically exported from code.google.com/p/dcef3
0 stars 0 forks source link

Timepicker not working properly #62

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Open any webpage with a html time picker.
2. Modify the minutes using the keyboard.
3. Without moving the focus out, try to modify the minutes again.
4. The number is not going to change, until suddenly be changed to "00".
5. No more changes can be done before toggling the focus somewhere else and 
putting it back onto the minutes field.
6. Again, only on change will be possible.

What is the expected output? What do you see instead?
Using Chrome allows the user to modify the minutes as many times as the user 
wishes.

What version of the product are you using? On what operating system?
Using dcef3 from Delphi 5, running it from both WinXP and Win 8.

Original issue reported on code.google.com by luisvf...@gmail.com on 9 Jan 2015 at 3:42

GoogleCodeExporter commented 9 years ago
I can't reproduce this error with the latest release on XE2 or Delphi 7.
Delphi 5 is not officially supported.
If it can help you, I think this code is not working with delphi 5 in cefvcl.pas
procedure TCustomChromium.WndProc(var Message: TMessage);
begin
....................
    WM_GETDLGCODE:
      Message.Result := DLGC_WANTARROWS or DLGC_WANTCHARS;
....................
end;

Original comment by hgourv...@gmail.com on 28 Feb 2015 at 12:08