|
Rank: Advanced Member Groups: Member
Joined: 12/10/2014 Posts: 142
|
Hello, It seems spellcheck is broken in 2025.1.6. I tryed my own code and tabbedbrowser with no luck. In tabbedbrowser there is no suggestion showing up in Quote:if (e.MenuInfo.Suggestions.Length > 0) { e.Menu.Items.Add(EO.WebBrowser.MenuItem.CreateSeparator()); e.Menu.Items.AddSpellCheckSuggstions(e.MenuInfo.Suggestions); e.Menu.Items.Add(EO.WebBrowser.MenuItem.CreateSeparator()); e.Menu.Items.Add(new EO.WebBrowser.MenuItem("Add To Dictionary", CommandIds.SpellCheckAddToDictionary)); } Removing BeforeContextMenu event fix the spellcheck but its not a solution for us. Regards
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,312
|
Hi,
We have found the root cause of this problem. This will be resolved in our next build and we will reply here again when the new build is available.
Thanks!
|
|
Rank: Advanced Member Groups: Member
Joined: 12/10/2014 Posts: 142
|
Hello, I updated to version 2025.1.22 and now when I try to open a context menu the webview crash. I'm using Quote:EO.Base.Runtime.EnableCrashReport = true; EO.Base.Runtime.ApplicationID = "EURICE"; so maybe you will find some crash reports. You can also download the crash data here. I cannot reproduce the problem on tabbed browser Thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,312
|
Hi,
The crash log shows it crashed while trying to add a separator. However the code in TabbedBrowser also tries to add a separator but it does not cause the crash. So it must be triggered by some different way that your code construct the context menu. Can you try to copy the code into the TabbedBrowser sample application and see if it casues the crash? If it does please send the code to us and we will debug it here.
Thanks!
|
|
Rank: Advanced Member Groups: Member
Joined: 12/10/2014 Posts: 142
|
Hello,
I found the issue: I copied some code from TabbedBrowser for the spellcheck, which led to my menu creating a separator as the first item.
I can confirm in tabbed browser that adding a separator as 1st item crash the webview.
All good for me thanks !
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,312
|
Thank you very much for the additional information. We were able to reproduce the problem. This will be fixed in our next build.
|
|