Re: UIBinder - how to change the color of GWT-Hyperlink/Anchor?

2014-03-15 Thread Magnus
Thanks! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit 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, send email to

UIBinder - how to change the color of GWT-Hyperlink/Anchor?

2014-03-14 Thread Magnus
Hi, how can you change the color of a hyperlink in UIBinder? My approach does not work (see below). Thanks Magnus ui:style .link { color:#FF; } /ui:style g:HTMLPanel g:Hyperlink addStyleNames={style.link} text=http://www.test.de; ui:field=hyperlink / /g:HTMLPanel

Re: UIBinder - how to change the color of GWT-Hyperlink/Anchor?

2014-03-14 Thread Jens
You have to use CSS pseudo classes for anchors: https://developer.mozilla.org/en-US/docs/Useful_CSS_tips/Links -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an

UIBinder - how to change the color of GWT-Hyperlink/Anchor?

2014-03-14 Thread Thomas Broyer
For historical reasons, Hyperlink renders a div wrapping an anchor. You can use an InlineHyperlink, or use .link a as your selector. You might also have to use link pseudo-classes as Jens said. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

GWT Hyperlink not working

2011-11-30 Thread Noor
I'm getting a problem with a gwt hyperlink, in fact it is not working, Ok, when I'm placing my cursor on the hyperlink, I cannot press on the hyperlink, it is as if a label!! : GWT Codes: Hyperlink hprlnkArt = new Hyperlink(Art, false, Interest=14); grid.setWidget(0, 6, hprlnkArt

why does gwt hyperlink inserts a div besides a ?

2010-10-01 Thread marius.andreiana
Is it really needed? Anchor widget doesn't insert a div, just a, as expected. -- 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

Re: why does gwt hyperlink inserts a div besides a ?

2010-10-01 Thread Thomas Broyer
On Oct 1, 4:38 pm, marius.andreiana marius.andrei...@gmail.com wrote: Is it really needed? It's a legacy behavior. Use InlineHyperlink instead. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: why does gwt hyperlink inserts a div besides a ?

2010-10-01 Thread marius.andreiana
On Oct 1, 5:56 pm, Thomas Broyer t.bro...@gmail.com wrote: On Oct 1, 4:38 pm, marius.andreiana marius.andrei...@gmail.com wrote: Is it really needed? It's a legacy behavior. Use InlineHyperlink instead. Thanks Thomas. -- You received this message because you are subscribed to the Google

Re: GWT Hyperlink and CSS?

2009-07-13 Thread Rinpun
been followed.   I then read about the GWT Hyperlink, and decided to switch ('cause that's kinda the point, at least for internal links, right? :) ) -- so I replaced my Anchor with a Hyperlink.  It works fine, but the style is no longer being used.  I have tried replacing

Re: GWT Hyperlink and CSS?

2009-07-12 Thread Rinpun
it to use the style my_link_style, which has text-decoration: none; in it.  And it worked, there was no underline, and it was the color I wanted it to be, whether or not it had been followed.   I then read about the GWT Hyperlink, and decided to switch ('cause that's kinda the point

Re: GWT Hyperlink and CSS?

2009-07-12 Thread Ian Bambury
; in it. And it worked, there was no underline, and it was the color I wanted it to be, whether or not it had been followed. I then read about the GWT Hyperlink, and decided to switch ('cause that's kinda the point, at least for internal links, right? :) ) -- so I replaced

GWT Hyperlink and CSS?

2009-07-11 Thread Nathan
it to be, whether or not it had been followed. I then read about the GWT Hyperlink, and decided to switch ('cause that's kinda the point, at least for internal links, right? :) ) -- so I replaced my Anchor with a Hyperlink. It works fine, but the style is no longer being used. I have tried replacing

Re: GWT Hyperlink and CSS?

2009-07-11 Thread rjcarr
; in it.  And it worked, there was no underline, and it was the color I wanted it to be, whether or not it had been followed.   I then read about the GWT Hyperlink, and decided to switch ('cause that's kinda the point, at least for internal links, right? :) ) -- so I replaced my Anchor with a Hyperlink

Re: GWT Hyperlink and CSS?

2009-07-11 Thread Nathan
, there was no underline, and it was the color I wanted it to be, whether or not it had been followed.   I then read about the GWT Hyperlink, and decided to switch ('cause that's kinda the point, at least for internal links, right? :) ) -- so I replaced my Anchor with a Hyperlink.  It works

GWT Hyperlink

2009-04-27 Thread Ice13ill
Hi, I'm trying to build an application containing sub-applications; each sub-app is opened by clicking on a Hyperlink widget. Problem: when hovering above one of the hyperlinks, the browser displays http://site.com/currentapp/# (because the Hyperlink is constructed using arguments and thus, i

Re: GWT Hyperlink

2009-04-27 Thread Alex Rudnick
It sounds like you could use an Anchor widget here. Of course, regular HTML tags should work fine too. http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/Anchor.html Hope this helps! On Mon, Apr 27, 2009 at 5:30 PM, Ice13ill andrei.fifi...@gmail.com wrote:

Opening a GWT Hyperlink that references a PDF or jpg file from the GTW Client – Error 404 – Not Found

2009-01-21 Thread orborca
place (location) is to write these files (attachments), so for now I toss them into /tmp String dirPath = /tmp; However, after deployment and when running tha application when I try to click on the gwt Hyperlink and open the file I get the Error 404 – Not Found error. I did not get this when running