主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Vladimir Kharitonov
活动总数
22
最后的活动
2024年12月18日 16:00
成员加入日期
2023年10月17日 13:12
关注
0 名用户
关注者数
0 名用户
投票数
1
订阅数
9
活动概览
帖子(0)
评论(12)
Vladimir Kharitonov
进行了评论,
2024年12月18日 15:53
Why is that happened? Thank you very much for any help!This happens in windowed mode because the browser receives native input events. It allows the browser to recognize zooming gestures by itself....
社区
IntelliJ IDEA Open API and Plugin Development
OffScreenRendering disables touchpad scaling
0 票
Vladimir Kharitonov
进行了评论,
2024年12月18日 15:41
You may also just execute this JS code once the browser loaded the page, if it doesn't break the page logic. document.addEventListener('wheel', function (event) { if (event.ctrlKey) { ...
社区
IntelliJ IDEA Open API and Plugin Development
Disable touchpad zooming in JcefBrowser
0 票
Vladimir Kharitonov
进行了评论,
2024年12月18日 15:36
Hi,It's the windowed mode(not OSR)? Right?Unfortunately there is no JCEF API that could help to do that.But I can suggest to use JavaScript to disable zooming, if you can inject some JS into your p...
社区
IntelliJ IDEA Open API and Plugin Development
Disable touchpad zooming in JcefBrowser
0 票
Vladimir Kharitonov
进行了评论,
2024年10月01日 12:28
1.) Is it really required to define the JS functions in a HTML page and then use cefBrowser.executeJavascript() to call them or Can we just write JS functions inside cefBrowser.executeJavascript() ...
社区
IntelliJ IDEA Open API and Plugin Development
Handle DOM Events happening in the Embedded Browser (JBCefBrowser)
0 票
Vladimir Kharitonov
进行了评论,
2024年09月30日 12:19
You may also check an example of sending data from JS in the IJ platform:Frontend - https://github.com/JetBrains/intellij-community/blob/69b39c923a9a18bc9409c7b3bf02ace5cb678f1e/images/src/org/inte...
社区
IntelliJ IDEA Open API and Plugin Development
Handle DOM Events happening in the Embedded Browser (JBCefBrowser)
0 票
Vladimir Kharitonov
进行了评论,
2024年09月30日 12:11
Are CefBrowser and JBCefJSQuery sufficient to deal with such button click and further user events or are JBCefClient/handlers required?`JBCefJSQuery` is sufficient for sending any kind of informati...
社区
IntelliJ IDEA Open API and Plugin Development
Handle DOM Events happening in the Embedded Browser (JBCefBrowser)
0 票
Vladimir Kharitonov
进行了评论,
2024年09月18日 14:38
I found out that CefResourceRequestHandler can observe request and response.This handler can intercept the request, but it doesn't observe the responses by itself. There is no option to mirror the ...
社区
IntelliJ IDEA Open API and Plugin Development
How to read response body in JBCefBrowser?
1 票
Vladimir Kharitonov
进行了评论,
2024年09月11日 14:57
Hi Tanwen886,Starting version 2024.2 JBCefBrowser has getBrowserComponent method that returns the the proper component to subscribe for UI events.Before that you can get the events target component...
社区
IntelliJ IDEA Open API and Plugin Development
addMouseWheelListener is not worked in JBCefBrowser component
0 票
Vladimir Kharitonov
进行了评论,
2024年09月10日 16:47
Hi mahu!At the time of the 2023.2.5 release, keyboard support was very limited and input methods did not work. It's got much better in newer versions. The only solution for 2023.2.5 is to not use O...
社区
IntelliJ IDEA Open API and Plugin Development
When creating the JCEF browser, the page cannot use the numeric keypad after OSR is enabled
0 票
Vladimir Kharitonov
进行了评论,
2024年07月12日 09:18
Hi Pierre,Currently the browser is run in OSR(off-screen-rendering) mode by default. The Drag&Drop is not supported in OSR yet.JBR-7399 JCEF: Support drag and drop in OSRAs a temporary solution I c...
社区
IntelliJ IDEA Open API and Plugin Development
HTML Element Drag&Drop not working anymore in Cef
1 票