How to place url link in gwt Label

2010-02-10 Thread mariyan nenchev
Hi, I have a label that contains some text and part of it must link: For example the whole Label text is : bla bla bla. Reference:link, bla bla bla. I tried : Reference : http://www.google.com";>Help Desk But gwt doesn't detect it as url, may be i should use HTML? Regards. -- You received this m

Re: How to place url link in gwt Label

2010-02-10 Thread philippe
You can use Html object to make your Label. Philippe On 10 fév, 11:45, mariyan nenchev wrote: > Hi, > I have a label that contains some text and part of it must link: > For example the whole Label text is : bla bla bla. Reference:link, bla bla > bla. > I tried : Reference : http://www.google.com

Re: How to place url link in gwt Label

2010-02-10 Thread Ashar Lohmar
guess what ... you are right :D On Feb 10, 12:45 pm, mariyan nenchev wrote: > Hi, > I have a label that contains some text and part of it must link: > For example the whole Label text is : bla bla bla. Reference:link, bla bla > bla. > I tried : Reference : http://www.google.com";>Help Desk > But

Re: How to place url link in gwt Label

2010-02-10 Thread mariyan nenchev
Hi, i tried it but it didn't work. HTML text = new HTML("Reference : http://www.google.com";>Help Desk"); It still does not render as link... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-

Re: How to place url link in gwt Label

2010-02-10 Thread mariyan nenchev
OK, my fault it worked! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.co

Re: How to place url link in gwt Label

2010-02-10 Thread Daniele
On Feb 10, 11:45 am, mariyan nenchev wrote: > Hi, > I have a label that contains some text and part of it must link: > For example the whole Label text is : bla bla bla. Reference:link, bla bla > bla. > I tried : Reference : http://www.google.com";>Help Desk > But gwt doesn't detect it as url, m

Re: How to place url link in gwt Label

2010-02-10 Thread Daniele
On Feb 10, 2:35 pm, mariyan nenchev wrote: > Hi, i tried it but it didn't work. > HTML text = new HTML("Reference : http://www.google.com";>Help > Desk"); > > It still does not render as link... Hi try to this HTML text = new HTML("Reference : Help> Desk"); I changed " with ' Cheers -- You

Re: How to place url link in gwt Label

2010-02-11 Thread tuxinoo
Why do you not just simply use Anchor widget ? Sample: Anchor anchor = new Anchor("GWT Tutorials", "http:// www.gwttutorials.com", "_blank") ; On 10 fév, 14:38, Daniele wrote: > On Feb 10, 2:35 pm, mariyan nenchev wrote: > > > Hi, i tried it but it didn't work. > > HTML text = new HTML("Referen

Re: How to place url link in gwt Label

2010-02-11 Thread philippe
Normally, Anchor is used to internal link. http://myapp/#myAnchor On 10 fév, 18:57, tuxinoo wrote: > Why do you not just simply use Anchor widget ? > > Sample: Anchor anchor = new Anchor("GWT Tutorials", > "http://www.gwttutorials.com";, "_blank") ; > > On 10 fév, 14:38, Daniele wrote: > > > >

Re: How to place url link in gwt Label

2010-02-12 Thread Thomas Broyer
On Feb 11, 4:48 pm, philippe wrote: > Normally, Anchor is used to internal link.http://myapp/#myAnchor You're confusing Anchor with Hyperlink (or InlineHyperlink) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, s

Re: How to place url link in gwt Label

2010-02-12 Thread Christian Goudreau
Anyway : blablabla your text Your link blabalbla your text On Fri, Feb 12, 2010 at 12:06 PM, Thomas Broyer wrote: > > > On Feb 11, 4:48 pm, philippe wrote: > > Normally, Anchor is used to internal link.http://myapp/#myAnchor > > You're confusing Anchor with Hyperlink (or InlineHyperlink) >