Re: [Interest] QtWebKit and open URL in new tab window

2017-11-21 Thread neel patel
Hi, Yes. By using "_blank" - "createWindow" callback is getting called every time we click on link. You are right - We should use "_blank" instead of "_new" target attribute as didn't find any reference document. Thanks for your valuable suggestion. Regards, Neel Patel On Tue, Nov 21, 2017 at 1

Re: [Interest] QtWebKit and open URL in new tab window

2017-11-21 Thread Konstantin Tokarev
>> Hi, >> >> I want to create new window in my QTabWidget when we get "target=_new" from >> HTML file. >> >> We are getting "createWindow" call from Qt when user click on any link with >> attribute "target=_new" and I am handling that and open in new tab in >> QTabWidget. >> >> BUT when we clo