Welcome Guest Search | Active Topics | Sign In | Register

EO.WebBrowser - SpellCheck Options
Fabien
Posted: Wednesday, July 23, 2014 10:11:33 AM
Rank: Advanced Member
Groups: Member

Joined: 7/21/2014
Posts: 129
Hi,

Any chance to include a spellchecker in EO.Webbrowser (like in Google Chrome )?

Thanks.
eo_support
Posted: Wednesday, July 23, 2014 12:30:00 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Hi,

Currently we do not have any plan to support this. There are many features that Chrome browser has, such as auto address look up, spell checking, integration with Google account, auto update, etc, are considered a part of the "shell" instead of the core engine. All of them are "would be nice" feature but it's not practical for us to put them all in, and even if we do put them in, the distribution would be too big for many users. In the future, it is possible for us to isolate it into a separate DLL so that you can include it only if you wish to use that feature, but we do not have an ETA on that yet.

Thanks!
Fabien
Posted: Thursday, July 24, 2014 3:08:50 AM
Rank: Advanced Member
Groups: Member

Joined: 7/21/2014
Posts: 129
Hi,

Understand your answer, but i believe there is a spell checking implementation in chromium.

See this thread for more details : https://code.google.com/p/chromiumembedded/issues/detail?id=137
eo_support
Posted: Thursday, July 24, 2014 10:04:12 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Yes. It is there. It's just not part of EO.WebBrowser. Chromium is the part that is open source in Chrome. But not everything in Chromium is part of the core engine or included in EO.WebBrowser.

Thanks
Fabien
Posted: Thursday, July 24, 2014 10:06:55 AM
Rank: Advanced Member
Groups: Member

Joined: 7/21/2014
Posts: 129
You're right, as you say in your previous post it's a"would be [very very] nice" feature ;)
eo_support
Posted: Thursday, July 24, 2014 10:29:22 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Fabien wrote:
it's a"would be [very very] nice" feature ;)


Yes. We understand that. :)
Fabien
Posted: Wednesday, October 8, 2014 11:27:00 AM
Rank: Advanced Member
Groups: Member

Joined: 7/21/2014
Posts: 129
Hi,

Does EO.WebBrowser is based on CEF?
eo_support
Posted: Wednesday, October 8, 2014 1:42:17 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Fabien wrote:
Hi,

Does EO.WebBrowser is based on CEF?


Hi,

The internal architectural for the browser side is almost identical to CEF since it is one of the prime example of how to embed Chrome browser engine. However our product is not built on top of CEF directly. CEF is mainly for C++ users, where as our focus is exclusively for .NET users. So we actually follow Chrome's codebase, not CEF's codebase.

Thanks
Fabien
Posted: Wednesday, January 21, 2015 4:38:11 AM
Rank: Advanced Member
Groups: Member

Joined: 7/21/2014
Posts: 129
Hi,

Any chances for the spellchecker is plan in 2015?

If not, do you have an idea to include a spellchecker in EO.WebBrowser (Js or something else)

Thanks.
eo_support
Posted: Wednesday, January 21, 2015 12:23:28 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Hi,

We are planning to support spellchecker in 2015. However that is not carved in stone yet, so we will only be certain when we actually have it.

Thanks!
Fabien
Posted: Wednesday, June 24, 2015 11:18:18 AM
Rank: Advanced Member
Groups: Member

Joined: 7/21/2014
Posts: 129
Hi,

Wow! I see the spellcheck is in your latest EO.Webrowser release ! That's a big new!

Unfortunately, when we choose a suggestion word, the misspelled word isn't replaced... : /
Eurice
Posted: Thursday, June 25, 2015 6:24:49 AM
Rank: Advanced Member
Groups: Member

Joined: 12/10/2014
Posts: 133
Hey,

Same here, it seems the context menu assign a command Id to each correction but doesn't trigger the replace method.
If you capture CommandEventArgs passed in Command event,
I believe you (EO team) have all informations required for the traduction :

- e {EO.WebBrowser.CommandEventArgs} EO.WebBrowser.CommandEventArgs
+ base {EO.WebBrowser.CommandEventArgs} EO.WebBrowser.FrameEventArgs {EO.WebBrowser.CommandEventArgs}
CommandId 200 int
Flags None EO.WebBrowser.EventFlags
Handled false bool
- MenuInfo {EO.WebBrowser.ContextMenuInfo} EO.WebBrowser.ContextMenuInfo
EditState 253 EO.WebBrowser.EditState
FrameCharSet "UTF-8" string
FrameUrl "http://192.168.250.35/.." string
IsEditable true bool
LinkUrl "" string
MediaType None EO.WebBrowser.ContextMenuMediaType
PageUrl "http://192.168.250.35/.." string
SourceFlags Page | Frame | Selection | Editable EO.WebBrowser.ContextMenuSourceFlags
SourceUrl "" string
X 45 int
Y 215 int
- Membres non publics
a 45 int
b 215 int
c Page | Frame | Selection | Editable EO.WebBrowser.ContextMenuSourceFlags
d None EO.WebBrowser.ContextMenuMediaType
e "" string
f "" string
g "http://192.168.250.35/.." string
h "http://192.168.250.35/.." string
i "UTF-8" string
j None EO.WebBrowser.MediaState
k "bongour" string
l true bool
m 253 EO.WebBrowser.EditState
MediaState None EO.WebBrowser.MediaState
SelectionText "bongour" string


I tryed to use webViewEO.ExecCommand with the contextMenu's CommandId but same result.


Best regards
eo_support
Posted: Monday, June 29, 2015 10:54:19 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Hi,

We have just posted a new build that should address this issue. You can download it directly from our download page.

Thanks!
Eurice
Posted: Wednesday, July 1, 2015 6:32:51 AM
Rank: Advanced Member
Groups: Member

Joined: 12/10/2014
Posts: 133
Works perfectly,
thanks guys.
eo_support
Posted: Wednesday, July 1, 2015 9:27:56 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Great. Thanks for confirming it works!
vinbal
Posted: Saturday, July 4, 2015 2:40:05 AM
Rank: Newbie
Groups: Member

Joined: 4/23/2015
Posts: 2
Please let me know how to enable SpellChecker in EO.WebBrowser control?
eo_support
Posted: Saturday, July 4, 2015 9:44:04 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
Hi,

EO.WebBrowser 2014 does not support spell checker. EO.WebBrowser 2015 automatically enables it. You do not need to do anything special in EO.WebBrowser 2015.

Thanks!
vinbal
Posted: Monday, July 6, 2015 1:12:06 PM
Rank: Newbie
Groups: Member

Joined: 4/23/2015
Posts: 2
Hello,

Thanks for your immediate response.
Is there any way to enable spell checker for the loaded web page when contenteditable=true?

Thanks
eo_support
Posted: Monday, July 6, 2015 1:27:18 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,068
vinbal wrote:
Hello,

Thanks for your immediate response.
Is there any way to enable spell checker for the loaded web page when contenteditable=true?

Thanks


I believe SpellChecker is only available for simple textbox, not for HTML editing.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.