i18n Text with hyperlink

2015-02-02 Thread Eugen Besel
Hello together, is it possible to add html markups to the i18n text? for example I have a text which contains a hyperlink ( please klick pdf to download this document) what is the best way to do this?? I can create three text parts in my i18n_message.properties: message=please click pdf_link

Re: GWT.create 2015 video

2015-02-02 Thread marian lux
Hi, check out http://gwtcreate.com/videos/index.html In some weeks the most talks should be online. Am Montag, 2. Februar 2015 08:01:10 UTC+1 schrieb Mohammed: > > Hi, > Where can I find the video clip of GWT.create(2015) event, which is > currently organized and also about the GWT road map. >

Re: GWT.create 2015 video

2015-02-02 Thread maticpetek
Hi, And also follow the G+ group (https://plus.google.com/communities/116543000751323604177). Vaadin people usually publish new videos on this group. Or follow their twitter account. Regards, Matic On Monday, February 2, 2015 at 8:01:10 AM UTC+1, Mohammed wrote: > > Hi, > Where can I find

SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Ali Akhtar
I'd like to use GWT with SDM in a project that doesn't use servlets, instead its using the vert.x framework, with IntelliJ. Currently, I have two run configurations in IntelliJ. The first one starts the vert.x web framework which listens on port 80, and on http://localhost , it sends my host.h

Re: SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Ali Akhtar
> localhost:1978 Sorry, that should've been: localhost:9876 On Monday, February 2, 2015 at 6:30:40 PM UTC+5, Ali Akhtar wrote: > > I'd like to use GWT with SDM in a project that doesn't use servlets, > instead its using the vert.x framework, with IntelliJ. > > Currently, I have two run configur

Re: SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Ali Akhtar
Replacing the link to ModuleName.nocache.js with: http://127.0.0.1:9876/recompile-requester/ModuleName";> in dev mode, triggers a recompile, and works perfectly. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from thi

Re: i18n Text with hyperlink

2015-02-02 Thread Rogelio Flores
You can inclide html in your i18n strings. See here: http://www.gwtproject.org/doc/latest/DevGuideI18nMessages.html#SafeHtmlMessages On Monday, February 2, 2015 at 3:02:46 AM UTC-5, Eugen Besel wrote: > > Hello together, > > is it possible to add html markups to the i18n text? > > for example I

Re: SDM incremental recompiles in non-servlet projects?

2015-02-02 Thread Thomas Broyer
Anything that can serve files from the file-system can be used with SDM: just pass "-launcherDir path/to/some/directory" to the CodeServer and it will output a *.nocache.js in there that triggers a recompile on page load. On Monday, February 2, 2015 at 2:30:40 PM UTC+1, Ali Akhtar wrote: > > I'

Re: SDM incremental compiles and generators

2015-02-02 Thread Justin M. Keyes
On Mon, Feb 2, 2015 at 12:46 PM, Justin M. Keyes wrote: > At the GWT.create conference two weeks ago, John Stalcup mentioned > that GIN had a possibly-unreleased change that would work better with > the incremental compiler. The GIN repository[1] does not appear to > have any recent changes relate

Re: SDM incremental compiles and generators

2015-02-02 Thread Justin M. Keyes
At the GWT.create conference two weeks ago, John Stalcup mentioned that GIN had a possibly-unreleased change that would work better with the incremental compiler. The GIN repository[1] does not appear to have any recent changes related to this. Can anyone confirm whether these GIN changes are avai

i18n with hyperlink

2015-02-02 Thread Eugen Besel
Hello together, In my message property file I have a text which should contain a hyperlink. ( example: please click pdf for download this document ) I dont know how can I implement it in my ui, because I need for hyperlink a Anchor widget and for the text label or something else. I could mak