Re: Disabling class name obfuscation?

2021-05-20 Thread Gordan Krešić
On 21. 05. 2021. 08:25, Vassilis Virvilis wrote: I am using -style DETAILED in gwtc arguments during developments. I believe this turns off the obfuscation. Another possibility is to set configuration property "CssResource.style" to "pretty" in .gwt.xml: Docs: http://www.gwtproject

Re: Disabling class name obfuscation?

2021-05-20 Thread Vassilis Virvilis
I am using -style DETAILED in gwtc arguments during developments. I believe this turns off the obfuscation. I also use -strict -logLevel TRACE but I believe this has to do with the compiler log output. Hope this helps. On Fri, May 21, 2021 at 5:17 AM Slava Imeshev wrote: > So, I'm working on s

Disabling class name obfuscation?

2021-05-20 Thread Slava Imeshev
So, I'm working on styling the CellTable, and the CSS classes are coming in the inlined form with names such as "GBG2FFLDFD". So I end up correlating the content of the unbofuscated CellTable.css while building a custom CssResource. That works but it's a fairly slow process. Is there a way to d

Re: GWT tutorial does not compile

2021-05-20 Thread likejudo
Thanks. No, I have put that aside. I am trying to generate the project from Broyer's plugin but have problems. Have you seen this before? https://gitter.im/gwtproject/gwt On Thursday, May 20, 2021 at 3:08:53 PM UTC-5 lofid...@gmail.com wrote: > Sorry didn't see your questions... > > Did you man

Re: GWT tutorial does not compile

2021-05-20 Thread lofid...@gmail.com
Sorry didn't see your questions... Did you manage to upload file using GWT RPC? likejudo schrieb am Mittwoch, 19. Mai 2021 um 17:05:21 UTC+2: > Looking at the generated code in Nalukit, doPost has been overridden as > final in RemoteServlet. This method will not work. > > public abstract class

Re: Meaning of @ImportedWithPrefix?

2021-05-20 Thread Slava Imeshev
Understood. While we are here, is it possible to switch CellTable or DataGrid to the same external CSS model used by Panels, Dialogs etc? On Thursday, May 20, 2021 at 6:05:16 AM UTC-7 t.br...@gmail.com wrote: > Yes. > Note that you can put CellTable.Style.DEFAULT_CSS into your @Source to > comb

Re: Typescript annotations to JsInterop java classes automatic generation tool ready

2021-05-20 Thread David
Can I use this tool to convert files in https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu to Java? I can not understand this sentence - " Then launch it with nodejs target/main.js CONFIG_FILE." or I don't know how to use this bool. Thanks, David On Thursday, Sep

how to migrate from Codehaus Mojo maven gwt plugin to TBroyer maven gwt plugin?

2021-05-20 Thread likejudo
How to migrate from Codehaus Mojo maven gwt plugin to TBroyer maven gwt plugin? I am trying to refactor a GWT project. It has GXT widgets and I need to replace them with GWT widgets. However the Mojo plugin is bewildering in its options. Looking at the pom.xml, I find 1) packaging is set to war.

Re: Meaning of @ImportedWithPrefix?

2021-05-20 Thread Thomas Broyer
Yes. Note that you can put CellTable.Style.DEFAULT_CSS into your @Source to combine the default styles with yours. On Thursday, May 20, 2021 at 1:42:12 AM UTC+2 ime...@gmail.com wrote: > Yes, thank you. > > Actually, I was trying to figure out how to style CellTable (or DataGrid) > so I starte