Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread 'Frank Hossfeld' via GWT Users
Are you certain, that the annotation processor had ran? I have not digged into domino-jackson, but I think, the @JsonMapper annotation triggers a annotation processor. The generated classes will be found under 'target/generated-sources/annotatins' Marco Tenti (IoProgrammo88) schrieb am Montag,

Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread 'Frank Hossfeld' via GWT Users
Are you certain, that the annotation processor already run? I have not digged into domino-jackson, but I think, the @JsonMapper annotation triggers a annotation processor. The generated classes will be found under 'target/generated-sources/annotatins' Marco Tenti (IoProgrammo88) schrieb am

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-15 Thread 'RobW' via GWT Users
ck the Lombok dependency > first, since that's a third-party it depends on. I don't suppose you've > ever been exposed to that? > I tried setting the > *compile *to the "configuration" setting > of the plugin def in pluginmanagement of the root pom. That didn't

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-15 Thread Mathias
management of the root pom. That didn't help. (neither compile+runtime) In the intellij GWT-plugin I got it working while running by setting the argument "-javaagent:/...path/lombok-1.16.14.jar=ECJ , not sure if that could change anything. I mean this breaks at compile so I don't know. I ha

Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread Marco Tenti (IoProgrammo88)
I also try to use the external approach described here https://dominokit.com/solutions/domino-jackson/v1/docs/getting-started/define-mappers but it should be the same i must have the XXMapperImpl somewhere , but the java compiler tell me that class do not exists. Maybe there is some maven

Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-15 Thread Marco Tenti (IoProgrammo88)
The problem i cannot find the generate class "Person_MapperImpl" is under the target folder somewhere ? Il giorno venerdì 12 aprile 2024 alle 18:25:30 UTC+2 Thomas Broyer ha scritto: > Aren't you supposed to directly use the generated class rather than using > GWT.create() ? (unless you also

Re: Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-12 Thread Thomas Broyer
Aren't you supposed to directly use the generated class rather than using GWT.create() ? (unless you also added a in your gwt.xml) https://dominokit.com/solutions/domino-jackson/v1/docs/getting-started/quick-start On Friday, April 12, 2024 at 1:20:27 PM UTC+2 tenti...@gmail.com wrote: > I'm

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Mathias
Thomas, Marco showed me a project that made me see one thing I hadn't thought about, which was configured the same in the archetype project. It's regarding the sources. In my project, I only have one jar that contain both classes and source files for those jar files that are needed, i.e. no

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Mathias
Thanks! That's a great resource and got me to see one thing I'd missed. On Friday 12 April 2024 at 15:11:45 UTC+2 Marco Tenti (IoProgrammo88) wrote: > This project has many good examples to check out > https://github.com/NaluKit/nalu-examples, it help me a lot. > > Il giorno vener

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Marco Tenti (IoProgrammo88)
This project has many good examples to check out https://github.com/NaluKit/nalu-examples, it help me a lot. Il giorno venerdì 12 aprile 2024 alle 14:39:16 UTC+2 Mathias ha scritto: > Hey Jens, thanks for replying! > > re. the gwt-type: > > 1. I only have one maven modul

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Mathias
ou forgot that? > > -- J. > > Mathias schrieb am Freitag, 12. April 2024 um 07:50:42 UTC+2: > >> I *really* could use some help getting my project up for development >> after moving to gwt 2.10 and Java 11. >> I can unfortunately nolonger use the GWT intellij plugin

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Mathias
Fair enough mate, I just remarked on it since when I built the archetype from scratch and saw that, my first thought was "huh wonder why that is, surely it won't work now since it doesn't pull in the classes from shared", but it did :) On Friday 12 April 2024 at 11:20:01 UTC+2 Thomas Broyer

Help to undrerstand how to use domino-jackson and the annotation JSONMapper

2024-04-12 Thread Marco Tenti (IoProgrammo88)
I'm upgrading a old project and i want to replace the old gwt-jackson (https://dominokit.com/solutions/domino-jackson/v1) with the domino-jackson project (https://github.com/DominoKit/domino-jackson). It should be a simple transiction, but i cannot understand how to let the GWT compilation

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Thomas Broyer
On Friday, April 12, 2024 at 7:50:42 AM UTC+2 Mathias wrote: -My dependencies should be ok since i can build it with the plugin, so i'm a bit at a loss as to how make this work. Dependencies for gwt:compile and gwt:codeserver aren't the same:

Re: Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-12 Thread Jens
Freitag, 12. April 2024 um 07:50:42 UTC+2: > I *really* could use some help getting my project up for development > after moving to gwt 2.10 and Java 11. > I can unfortunately nolonger use the GWT intellij plugin i've loved and > used for 12 years apparently, and i'm struggling

Really need help getting CodeServer to run with Java 11 and GWT 2.10

2024-04-11 Thread Mathias
I *really* could use some help getting my project up for development after moving to gwt 2.10 and Java 11. I can unfortunately nolonger use the GWT intellij plugin i've loved and used for 12 years apparently, and i'm struggling a bit to get the codeserver running for my project. *CURRENT

Re: help to understand uiRenderer

2023-04-05 Thread Axel R.
hello, is it possible to delete this post ? thanks you On Tuesday, 8 January 2013 at 09:52:55 UTC-5 Axel REGNOULT wrote: > ok, I close this topic, my error was the importance to use the same > parameter name Contact in the render method. > > > void render(SafeHtmlBuilder sb, Contact

Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2022-10-20 Thread Pramod Patil
Hi, Did you get solution for your problem? On Monday, 21 March 2016 at 19:16:23 UTC+5:30 Dhinakar wrote: > Can anyone help me to copy the text to clipboard in a simple way and which > works on all browsers especially on Safari, Chrome and IE and with out the > need of flash or any o

Re: GWT super Dev Mode help

2021-08-13 Thread Yibin Li
t > > HTTP ERROR: 503 > > Problem accessing /ARIES.html. Reason: > Service Unavailable > > *Powered by Jetty://* > > > When I put http://127.0.0.1:9876/ (Jetty server) > > I got popup window Can't find any GWT Modules on this page. > http://127.0.0.1:987

GWT super Dev Mode help

2021-08-09 Thread Yibin Li
ing /ARIES.html. Reason: Service Unavailable *Powered by Jetty://* When I put http://127.0.0.1:9876/ (Jetty server) I got popup window Can't find any GWT Modules on this page. http://127.0.0.1:9876 How can I make super dev mode work in GWT 2.9 Any help is appreciated Yibin LI -- You recei

Re: Need help debugging 2.0.3 (IE/Chrome - Eclipse Neon)

2020-01-17 Thread Thomas Broyer
ipse in front end (starting from > GWT Entry Point and then...) > > But i can debug some parts of back end with eclipse (rest services backend > layer)... > > So i need help with the following: > > 1) Can i debug GWT 2.0 using IE / chrome and Eclipse IDE (Neon) ???, IF >

Re: Need help debugging 2.0.3 (IE/Chrome - Eclipse Neon)

2020-01-17 Thread Michael Conrad
debug in some java classes, mainly java files on Eclipse in front end (starting from GWT Entry Point and then...) But i can debug some parts of back end with eclipse (rest services backend layer)... So i need help with the following: 1) Can i debug GWT 2.0 using IE / chrome and Ec

Need help debugging 2.0.3 (IE/Chrome - Eclipse Neon)

2020-01-15 Thread Luis Soto Sepulveda
that i can "not perform direct debug in some java classes, mainly java files on Eclipse in front end (starting from GWT Entry Point and then...) But i can debug some parts of back end with eclipse (rest services backend layer)... So i need help with the following: 1) Can i debug GWT 2.0 us

Re: Help: Error in Call RPC - GWT , 404 the server responded with a status of 404 (Not Found)

2019-07-10 Thread Thomas Broyer
gt; > > > > I don't understand why gwt add a "Wkf" to the module address. I mean this > should be: > > /com.emp.mid.web.wkf/Service > > without "Wkf" particle > > I'm calling the gwt module

Help: Error in Call RPC - GWT , 404 the server responded with a status of 404 (Not Found)

2019-07-10 Thread Silvia
gwt module by means a HTML: Wkf.html How can I change the module address in order gwt can find the service? Can anybody help me? Thanks in advance for some help, Sil -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from

Re: Deferred Binding - Help!

2018-09-15 Thread Radu Matasaru
r to instantiate all possible *Pet* > implementations within a module. > > If I am going to implement a generator, should it be in the plugin or in > the core application? I've found a few examples, but none seem to pinpoint > exactly what I'm trying to do. Appreciate any help... > -

Re: Deferred Binding - Help!

2018-09-14 Thread Josselin Bardet
it be in the plugin or in > the core application? I've found a few examples, but none seem to pinpoint > exactly what I'm trying to do. Appreciate any help... > > -- > You received this message because you are subscribed to the Google Groups > "GWT Users" group. >

Re: Deferred Binding - Help!

2018-09-14 Thread Thomas Broyer
implement a generator, should it be in the plugin or in > the core application? I've found a few examples, but none seem to pinpoint > exactly what I'm trying to do. Appreciate any help... > What you're doing is put several totally distinct apps on a single page, and making them t

Deferred Binding - Help!

2018-09-14 Thread Matthew Bergshoeff
how to use a Generator to instantiate all possible *Pet* implementations within a module. If I am going to implement a generator, should it be in the plugin or in the core application? I've found a few examples, but none seem to pinpoint exactly what I'm trying to do. Appreciate any help... -- Yo

Re: Need help with JsonpRequestBuilder

2017-10-28 Thread Anita Vajirkar
Hi omsrobert, I am trying get simple JSONP example. Can you please let me know how you set callback? Since I also did that in URL as well as using "setCallbackParam" method, but no luck. Still timeout error. I see request going through in firebug and has "=__gwt_jsonp__.P0.onSuccess" appended

Help finding UK based get developers

2017-08-03 Thread Ben Potter
Hi guys, I'm looking for some help if you would be so kind. I am looking for a gwt developer in the south of England. I'm having trouble finding a gwt specialist rather than someone who has just used it at some point in the past. If anyone could point me in the right direction or recommend

Re: Help

2017-02-16 Thread natan clara
I usually work with google chrome and any other browse Em 16/02/2017 09:15, 114joan escreveu: I will like to know way is GWT not working in Google Chrom, and how can i resolve this problem. Can eny one Help Me? Thanks

Help

2017-02-16 Thread 114joan
I will like to know way is GWT not working in Google Chrom, and how can i resolve this problem. Can eny one Help Me? Thanks -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails fro

Re: com.google.gwt.core.client.JavaScriptException: (Error) description: Out of Memory number: -2146828281 __gwt$exception: : Out of memory Can anyone help me fix this error? I am using

2017-01-20 Thread Jens
You might want to use IE 11 developer tools to see memory consumption and if it keeps growing the longer you use your app. I don't think anyone can help here, you have to analyze your app in IE 11. -- J. -- You received this message because you are subscribed to the Google Groups "GWT

Re: com.google.gwt.core.client.JavaScriptException: (Error) description: Out of Memory number: -2146828281 __gwt$exception: : Out of memory Can anyone help me fix this error? I am using

2017-01-20 Thread Pam Coffey
This is occurring on a Web Client Application we use to run jobs. It seems to occur when the App is not logged out of for long periods of time. On Friday, January 20, 2017 at 6:56:58 AM UTC-5, Frank wrote: > > I think a little bit more information would be usefull. > > When does this error

Re: com.google.gwt.core.client.JavaScriptException: (Error) description: Out of Memory number: -2146828281 __gwt$exception: : Out of memory Can anyone help me fix this error? I am using

2017-01-20 Thread Frank
I think a little bit more information would be usefull. When does this error appear ? While compiling, while running code ? What code ? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from

com.google.gwt.core.client.JavaScriptException: (Error) description: Out of Memory number: -2146828281 __gwt$exception: : Out of memory Can anyone help me fix this error? I am using IE 1

2017-01-19 Thread Pam Coffey
Can anyone help me fix this error? I am using IE 11 -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.co

Re: GWT 1.7 to 2.7(migration). EXT-JS help

2016-12-18 Thread Alain Ekambi
Try ext4j.our gwt wrap per for ext js. we used it to write Dikalo https://www.dklo.co it Supports GWT 2.7 Am 12.12.2016 18:09 schrieb : > Hi, > > I have recently started migrating my application from GWT 1.7 to GWT 2.7. > With a limited availability of information

Re: GWT 1.7 to 2.7(migration). EXT-JS help

2016-12-17 Thread 敏陈
just try it if makes Error post it out! 在 2016年12月13日星期二 UTC+8上午1:09:55,venkata...@gmail.com写道: > > Hi, > > I have recently started migrating my application from GWT 1.7 to GWT 2.7. > With a limited availability of information online I was finding difficulty > in updating. > > Currently my

Re: Need some help with debugging an issue in GWT SDM compiler

2016-12-16 Thread Kirill Prazdnikov
some time finding a probable bug in the > compiler itself and give back to the community by fixing it than constantly > working around the issue. > > On Saturday, December 17, 2016 at 2:11:09 AM UTC+1, Kirill Prazdnikov > wrote: >> >> mvn clean and clean temp folder befo

Re: Need some help with debugging an issue in GWT SDM compiler

2016-12-16 Thread Nándor Előd Fekete
mp folder before compile will help > > > суббота, 17 декабря 2016 г., 0:49:30 UTC+3 пользователь Nándor Előd > Fekete написал: >> >> Hi! >> >> I have this strange problem in SDM, where a method in the generated >> output JS gets defined under a name, but

Re: Need some help with debugging an issue in GWT SDM compiler

2016-12-16 Thread Kirill Prazdnikov
mvn clean and clean temp folder before compile will help суббота, 17 декабря 2016 г., 0:49:30 UTC+3 пользователь Nándor Előd Fekete написал: > > Hi! > > I have this strange problem in SDM, where a method in the generated output > JS gets defined under a name, but gets reference

Need some help with debugging an issue in GWT SDM compiler

2016-12-16 Thread Nándor Előd Fekete
Hi! I have this strange problem in SDM, where a method in the generated output JS gets defined under a name, but gets referenced under another name. I'll try to show it through actual compiled JS code vs original code. function *getBoundingClientRect_3_g$*(this$static_0_g$,

GWT 1.7 to 2.7(migration). EXT-JS help

2016-12-12 Thread venkatasaimada
Hi, I have recently started migrating my application from GWT 1.7 to GWT 2.7. With a limited availability of information online I was finding difficulty in updating. Currently my 1.7 GWT application runs on GWTEXT 2.0.4. and the last released GWTEXT version in the market is

Help modifying celltable styles with gss

2016-11-16 Thread Raymond Hawkins
I'm in the process of updating to GWT 2.8, and I have the following code from 2.7: public interface DataGridResource extends DataGrid.Resources { public interface Style2 extends Style {} @Source({DataGrid.Style.DEFAULT_CSS, "MaterialDataGrid.css"}) Style2 dataGridStyle(); } Following the

Re: Please help: GWT generates .class files to src folder

2016-08-31 Thread JonL
If you are running in Eclipse, this is an eclipse setting in the Project Properties -> Java Build Path, make sure "Allow output folders for source folders" is unchecked or make sure that each source folder is pointing its output folder to a desired location. On Wednesday, August 31, 2016 at

Please help: GWT generates .class files to src folder

2016-08-31 Thread 'Florian Heymel' via GWT Users
Hello all, i got a strange issue recently. If i launch gwt superdev mode gwt somehow compiles classes on demand, as soon as they are used (servlets or daos etc). What i dont understand is, why they occure in my src folder? Can anyone hep with that issue? That is really annoying because it

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-22 Thread Thomas Broyer
See the README-MAVEN.txt file in each sample. One uses gwt:devmode, the other appengine:devserver_start followed by gwt:codeserver. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Brandon Donnelson
I was trying to test the Maven samples, although each one of them seem to have some sort of issue. Could be I'm missing a step, or maybe some code configuration tuning is needed. I haven't noticed any blockers or other issues outside of that for IE9 on Win7. I'll aim for another browser

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread 'Daniel Kurka' via GWT Contributors
submitting thomas two fixes and then recutting. On Thu, Jul 21, 2016 at 12:57 PM Brandon Donnelson wrote: > Where's the link to the GWT 2.8.0-rc1.zip? > > > On Thursday, July 21, 2016 at 7:22:11 AM UTC-7, Thomas Broyer wrote: >> >> >> >> On Thursday, July 21, 2016 at

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Brandon Donnelson
Where's the link to the GWT 2.8.0-rc1.zip? On Thursday, July 21, 2016 at 7:22:11 AM UTC-7, Thomas Broyer wrote: > > > > On Thursday, July 21, 2016 at 4:11:09 PM UTC+2, Michael Joyner wrote: >> >> Can it be tagged and pulled via jitpack.io ? >> > > Ha ha, jitpack wouldn't know how to build and

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Michael Joyner
Can it be tagged and pulled via jitpack.io ? On 07/20/2016 05:57 PM, 'Daniel Kurka' via GWT Contributors wrote: We just fixed a bug in rc1, I'll redo the release now and give you guys a download link. On Wed, Jul 20, 2016

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Thomas Broyer
Carrasco Moñino <man...@apache.org> > wrote: > >> I don't see 2.8.0-rc1 anywhere, what is the branch/tag/commit cut I have >> to use ? >> >> El mié., 20 jul. 2016 a las 19:07, Manuel Carrasco Moñino (< >> man...@apache.org>) escribió: >> >

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-20 Thread Brandon Donnelson
it be of interest to test MS Edge on Windows 10? -Brandon On Wed, Jul 20, 2016 at 10:07 AM Manuel Carrasco Moñino <man...@apache.org> wrote: > I can help with windows testing as well on Friday. > Brandon let me know what platforms are you going to test, I have XP with > IE8, Win8 IE10,

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-20 Thread Manuel Carrasco Moñino
I don't see 2.8.0-rc1 anywhere, what is the branch/tag/commit cut I have to use ? El mié., 20 jul. 2016 a las 19:07, Manuel Carrasco Moñino (< man...@apache.org>) escribió: > I can help with windows testing as well on Friday. > Brandon let me know what platforms are you going to tes

[gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-20 Thread Brandon Donnelson
l test on Linux / Chrome. > > On Wednesday, July 20, 2016 at 3:09:08 AM UTC+2, Daniel Kurka wrote: >> >> Hi all, >> >> we have build the preliminary GWT 2.8.0-rc1 version and now need help >> with DOA testing (making sure its not dead on arrival). >> >

Re: [gwt-contrib] GWT 2.8 RC1 Help with testing

2016-07-20 Thread Thomas Broyer
We have interest in Linux / Chrome. > > Natan. > > > > Em 20/07/2016 09:31, Michael Joyner escreveu: > > (I'm cross posting this here from > google-web-toolkit-contribut...@googlegroups.com as being highly relevant) > > Hi all, > > we have build the

Re: [gwt-contrib] GWT 2.8 RC1 Help with testing

2016-07-20 Thread natan clara
) Hi all, we have build the preliminary GWT 2.8.0-rc1 version and now need help with DOA testing (making sure its not dead on arrival). We are currently missing testers for: Linux

[gwt-contrib] GWT 2.8 RC1 Help with testing

2016-07-20 Thread Michael Joyner
(I'm cross posting this here from google-web-toolkit-contribut...@googlegroups.com as being highly relevant) Hi all, we have build the preliminary GWT 2.8.0-rc1 version and now need help with DOA testing (making sure its not dead

[gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-20 Thread Thomas Broyer
I'll test on Linux / Chrome. On Wednesday, July 20, 2016 at 3:09:08 AM UTC+2, Daniel Kurka wrote: > > Hi all, > > we have build the preliminary GWT 2.8.0-rc1 version and now need help with > DOA testing (making sure its not dead on arrival). > > We are currently missing t

[gwt-contrib] GWT 2.8 RC1 Help with testing

2016-07-19 Thread 'Daniel Kurka' via GWT Contributors
Hi all, we have build the preliminary GWT 2.8.0-rc1 version and now need help with DOA testing (making sure its not dead on arrival). We are currently missing testers for: Linux / Chrome Windows 7 / IE8/IE9 Windows 7 / IE 10 Windows 7 / IE 11 If you are interested in spending ~1h in testing

GWT 2.8 last call & help with testing

2016-07-13 Thread Michael Joyner
final (or even slightly longer if we anticipate a 2.8.1). We also need someone to coordinate testing on the open source side as well as tester to do the actual testing. Let me know if you want to take over coordination or testing and I will help

[gwt-contrib] GWT 2.8 last call & help with testing

2016-07-13 Thread Thomas Broyer
We have a regression due to Java 8 changes in c.g.g.emul and generators, that affects at least AutoBeans. I'll try to work on fixes tomorrow, Friday otherwise. I'll file (or reopen) an issue for better tracking. -- You received this message because you are subscribed to the Google Groups "GWT

Re: Newbie Help - how to retrieve data from another website?

2016-06-13 Thread Thomas Broyer
On Monday, June 13, 2016 at 9:40:34 AM UTC+2, Hans Dampf wrote: > > Hi everyone, > > opening an URL like http://randomserver.com/file?get=randomXML returns a > XML-file. I don't have access to the server. > Now i am trying to receive this data and give it out in my gwt-app. > I have tried

Newbie Help - how to retrieve data from another website?

2016-06-13 Thread Hans Dampf
Hi everyone, opening an URL like http://randomserver.com/file?get=randomXML returns a XML-file. I don't have access to the server. Now i am trying to receive this data and give it out in my gwt-app. I have tried modifying the code from this tutorial :

Re: Need help with an ideea on file processing

2016-05-17 Thread Marteijn Nouwens
Sound like basic call form the client. Upload the file. Place in a temp file and then send command to server wich return's html. Done stuff like this with uploading pdf's and the showing preview. Is basicly the same. Op maandag 16 mei 2016 21:48:11 UTC+2 schreef Olar Andrei: > > Hello, > > I

Re: Need help with an ideea on file processing

2016-05-16 Thread natan aguiar
Source from server file to client. import java.io.FileInputStream; import java.io.IOException; import java.io.PrintWriter; import java.util.Locale; import javax.servlet.ServletException; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServlet; import

Need help with an ideea on file processing

2016-05-16 Thread Olar Andrei
Hello, I have a application, which has 2 main places. The AdminPlace, for the admin, and the UserPlace for the Users. I made a helper class, which generates html from excel, which I want to use it like this: The admin uploads an excel file, from which html code gets generated and displayed in

Re: Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Hristo Stoyanov
Jens, Thanks .. this seems to work: @JsType(isNative = true, name = "Checkbox", namespace = "checkbox") public class SUICheckbox extends JQueryContext { ... @JsType(isNative = true, name = "Object", namespace = GLOBAL) public static class SettingsClass {

Re: Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Hristo Stoyanov
Jens, So how do I create an instance of it? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group,

Re: Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Jens
I think your Settings class should have @JsType(isNative = true, namespace = GLOBAL, name = "Object") to make it a JavaScript object literal. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop

Struggling with gwt 2.8/JsInterop and jQuery, help please!

2016-04-20 Thread Hristo Stoyanov
Hi all, I need to interface with JQuery API that looks like this: http://semantic-ui.com/modules/checkbox.html#/examples $('.callback.example .checkbox') .checkbox() .first() .checkbox({ onChecked: function() {...}, onUnchecked: function() {...},

Re: Help running DevMode with GWT 2.7 and no bookmarklets

2016-04-13 Thread Thomas Broyer
-launcherDir's equivalent for DevMode is -war and is not optional. If you use DevMode with -noserver then it's equivalent to using CodeServer with -launcherDir. You're otherwise right. Just a note: for people coming from "legacy DevMode" in 2.6, 2.7 didn't change anything, except their

Re: Help running DevMode with GWT 2.7 and no bookmarklets

2016-04-13 Thread shaun . tarves
Hi Thomas - That was the missing piece. I can now get the automatic re-compile on browser refresh. However, the launcherDir parameter is only available in the gwt-maven-plugin:run-codeserver mojo. Doesn't that start Super Dev Mode directly? I thought that *wasn't* the correct way to do things

Help running DevMode with GWT 2.7 and no bookmarklets

2016-04-12 Thread Thomas Broyer
If you were already using CodeServer, then just add -launcherDir pointing to the exploded war folder in your Tomcat. This will generate a new nocache.js overwriting the original one that will trigger SDM on load, so you have nothing to do but load your app. -- You received this message

Help running DevMode with GWT 2.7 and no bookmarklets

2016-04-12 Thread shaun . tarves
Hi guys - I've spent more than a day now on a quest to get DevMode running properly for GWT 2.7 with my multi-module GWT application. NOTE: I can run SDM completely fine using the bookmarklets, but I'm not sure that's the right way to do things now. As background, I use the gwt-maven-plugin

Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-30 Thread Harald Pehl
@Override >>>> public void >>>> onDragStart(DragStartEvent event) { >>>> >>>> event.setData("text/plain", >>>> YOURDATATOCOPY); >>>> >>>>

Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-30 Thread Vassilis Virvilis
public void >>> onDragStart(DragStartEvent event) { >>> >>> event.setData("text/plain", >>> YOURDATATOCOPY); >>> >>> >>> event.getDataTransfer().setDragImage(CopyIcon.getElement(), 10, 10); >>> >>>

Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-29 Thread JonL
sfer().setDragImage(CopyIcon.getElement(), 10, 10); >> >> } >> >> }, DragStartEvent.getType()); >> >> Hope this helps >> >> Ed >> >> >> On Mon, Mar 21, 2016 at 8:10 AM

Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-28 Thread Dhinakar Reddy Pothireddi
> event.getDataTransfer().setDragImage(CopyIcon.getElement(), 10, 10); > > } > > }, DragStartEvent.getType()); > > Hope this helps > > Ed > > > On Mon, Mar 21, 2016 at 8:10 AM, Dhinakar Reddy Pothireddi < > dhinaka...@gmail.com &g

Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-21 Thread Ed
dy Pothireddi < dhinakarred...@gmail.com> wrote: > Can anyone help me to copy the text to clipboard in a simple way and which > works on all browsers especially on Safari, Chrome and IE and with out the > need of flash or any other apps. Thanks in advance > > public sta

Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-21 Thread Dhinakar Reddy Pothireddi
Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers especially on Safari, Chrome and IE and with out the need of flash or any other apps. Thanks in advance public static native void copyFrom(com.google.gwt.user.client.Element element

[gwt-contrib] Re: Help testing the GWT 2.8 release

2015-11-30 Thread Brandon Donnelson
Regards to testing, I've added a patch to help with importing the samples or web application project into Eclipse. Problem: - running ant eclipse.generate on the samples does not create a .project file with the GWT nature enabled. Solution: This adds the GWT nature to the Eclipse .project

[gwt-contrib] Re: Need help with test case

2015-11-17 Thread Rene Hangstrup Møller
Thank you, that helped a lot. /Rene Den tirsdag den 17. november 2015 kl. 10.28.55 UTC+1 skrev Jens: > > At the top is a "reply" button. When you enter text in the corresponding > text box it is a general reply for the CL. You can also add comments for a > file or for a line of source code. To

[gwt-contrib] Re: Need help with test case

2015-11-17 Thread Rene Hangstrup Møller
I am still a bit puzzled by the gerrit interface. What is the correct way to add a comment to a patch set, or reply to a comment from a reviewer? Den mandag den 16. november 2015 kl. 22.32.18 UTC+1 skrev Rene Hangstrup Møller: > > I would also like a tip on how to run that testcase alone. > >

[gwt-contrib] Re: Need help with test case

2015-11-17 Thread Jens
At the top is a "reply" button. When you enter text in the corresponding text box it is a general reply for the CL. You can also add comments for a file or for a line of source code. To do so navigate to the desired patch set (top right drop down) and open the file. At the top middle is a small

[gwt-contrib] Need help with test case

2015-11-16 Thread Rene Hangstrup Møller
Hi I am trying to write a test case for https://github.com/gwtproject/gwt/issues/7247 There was an old test in https://github.com/gwtproject/gwt/issues/7247#issue-87058425 that reproduces the problem. I am trying to narrow it down and implement it as part of the existing

[gwt-contrib] Re: Need help with test case

2015-11-16 Thread Rene Hangstrup Møller
I would also like a tip on how to run that testcase alone. Right now I am doing this: (cd user && ant test -Dtest.emma.selenium.disable=true -Dtest.draft.htmlunit.disable=true -Dtest.coverage.htmlunit.disable=true -Dtest.nometa.htmlunit.disable=true -Dtest.nongwt.disable=true

[gwt-contrib] Re: Help testing the GWT 2.8 release

2015-11-10 Thread Brandon Donnelson
> > > On Monday, November 2, 2015 at 10:14:07 PM UTC+2, Daniel Kurka wrote: >> >> Hi all, >> >> the GWT team needs help testing the GWT 2.8.1-beta1 release. As always, >> before we publicize the release we are doing a bunch of DOA (dead on >> arriva

[gwt-contrib] Re: Help testing the GWT 2.8 release

2015-11-10 Thread stuckagain
Hi Daniel, I can help testing a bit on OSX Safari/Chrome/FireFox. If those tests are also possible disconnected from the internet I could also try on Win7/IE11/Chrome/FireFox. PS: How is Singular coming along ? I'm still waiting anxiously for a first release (even unstable) to play

[gwt-contrib] Re: Help testing the GWT 2.8 release

2015-11-10 Thread Petrică Clement Chiriac
Daniel is GWT 2.8.1-beta1 or GWT 2.8.0-beta1 ? Thanks, Petrica Chiriac On Monday, November 2, 2015 at 10:14:07 PM UTC+2, Daniel Kurka wrote: > > Hi all, > > the GWT team needs help testing the GWT 2.8.1-beta1 release. As always, > before we publicize the release we are doing

[gwt-contrib] Re: Help testing the GWT 2.8 release

2015-11-09 Thread Brandon Donnelson
I can help, send me the instructions. On Monday, November 2, 2015 at 12:14:07 PM UTC-8, Daniel Kurka wrote: > > Hi all, > > the GWT team needs help testing the GWT 2.8.1-beta1 release. As always, > before we publicize the release we are doing a bunch of DOA (dead on > arriva

[gwt-contrib] Help testing the GWT 2.8 release

2015-11-02 Thread 'Daniel Kurka' via GWT Contributors
Hi all, the GWT team needs help testing the GWT 2.8.1-beta1 release. As always, before we publicize the release we are doing a bunch of DOA (dead on arrival tests) before we open the release to the broader community. Platforms that need testing: - Chrome (Linux or mac), - Window IE11

Export CellTable to Excel ? HELP!

2015-10-07 Thread Aldo Pergjergji
Hi guys, i'm new in GWT and i need to export my CellTable to Excel (client side)? Any example? Thanks Aldo -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Errors migrating to GWT 2.7.0 . Can someone please help me ?

2015-09-28 Thread Srinivasarao Makkena
I could get past it by removing *.gwtar from gwt-user-2.5.0.jar which are supposed to be loaded by gwt for increased performance. Along with it removed gwt-Unit cache and complied...it rebuilt entire jar and worked fine. --sri On Thursday, February 12, 2015 at 11:08:07 PM UTC, Jens wrote: > >

Help with Super Dev Mode not showing content

2015-06-23 Thread rjcarr
I have an old project (been around since the early days of gwt) that's pretty large (the compiled javascript file is about 600KB). I'm using GWT 2.7 and at some point a while ago the old dev mode stopped working (basically the browser wouldn't load the plug-in) and so I've lived without it.

Re: Help with Super Dev Mode not showing content

2015-06-23 Thread Jens
Sounds strange. You can open Chrome Dev Tools and on the sources tab there is a small pause icon on the right which says Pause on exceptions. You can even tell Chrome to pause on any exception regardless if caught or not. So you could start your app and before clicking the tab that does not

Re: Help with Super Dev Mode not showing content

2015-06-23 Thread Robert J. Carr
Hi Jens- Thanks, I also thought of using the debugger and I think I might already have a lead. Great advice! I didn't know about the other debugging features you mentioned so I'll make a note of those. I am finding that I need to use the bookmarklets most of the time. It isn't a major

Re: Help with Super Dev Mode not showing content

2015-06-23 Thread Robert J. Carr
Hi Jens- Just letting you know I found the problem using the pause on exceptions feature. Handy that! Thanks for leading me in the right direction! Robert On Tue, Jun 23, 2015 at 11:32 AM, Robert J. Carr rjc...@gmail.com wrote: Hi Jens- Thanks, I also thought of using the debugger and I

Re: client logging config help with unexpected popup

2015-06-18 Thread jtran
no sense to me. As I said, it only happens in linux (specifically RHEL and it happened in both 5 and 7 although I don't see how it matters). It didn't (and doesn't) happen in GWT 2.6.1 with the same exact config. Thanks for any help you can offer! On Tue, Jan 27, 2015 at 3:41 PM, Jens

  1   2   3   4   5   6   7   8   9   10   >