Re: Slider for GWT?

2013-05-16 Thread Ben Ritchie
CSS hide the other scrollbar? On Tuesday, 7 May 2013 19:00:14 UTC+1, membersound wrote: > > This incubator works perfectly for me, as I just need a single scrollbar. > Thanks! > > > 2013/5/7 Honza Rames > > >> There is an Slider implementation in GWT incubator ( >> https://code.google.com/p/googl

Cannot change Label background colors on hover using css.

2013-05-16 Thread David Lee
So I set the style name of my GWT Label: currentDataNameDescriptionLabel.setStyleName("NFRFP-Label NFRFP-ClickableLabel"); and I have this css: .NFRFP-Label { float: left; font-size: 17px; margin-right: 4px; } .NFRFP-ClickableLabel { cursor: pointer; } .NFRFP-ClickableLabel: hover { backg

RichTextArea & HTML how to dynamically style anchor elements?

2013-05-16 Thread dhoffer
How can I dynamically change the color for links anywhere in RichTextArea & HTML elements? That is, I need to be able to set the link color dynamically as the user is allowed to specify the UI colors. I can change the general foreground and background colors no problem but I'm having trouble

Re: replacing jquery with GWT features in demo:: for web Designers

2013-05-16 Thread Jens
Hmm if I dont get the question right feel free to give some more information. In general you can add behavior to existing static HTML/CSS UI designs/mockups using GWT but you have to be aware that you probably slow down your workflow a bit compared to what you are used to as a Web/Ui Designer

replacing jquery with GWT features in demo:: for web Designers

2013-05-16 Thread Clarissa G
[UI/UEX web designer question] Is there a way for a UI designer (myself) to still use clean HTML/CSS while pulling in GWT features/elements (that may use UIBINDER) instead of having to find/customize/use throw away jquery to demo functionality? Thanks all! -- This communication, along with a

TabLayoutPanel not displaying properly after button push

2013-05-16 Thread Michael Galuza
Hi, I am trying to use a TabLayoutPanel and it seems to be working fine when it is the first thing I put on the page, but when I do it after a button push (for example) it is not displaying properly. For example, if I do something like this it works fine: TabLayoutPanel tlp = new TablLayoutP

Re: CSS

2013-05-16 Thread Andrei
In a well designed app, there are no widget-specific styles. None. Every margin / padding / color / size / border , etc., should be defined by a designer at the application level. I can't think of any style that developers should be allowed to set as they wish. It makes it much easier to build b

Re: Cell mouse in/out events fired multiple times

2013-05-16 Thread Ranjith Chungath
Sure, will check that one too... Thanks, Ranjith On Sunday, May 12, 2013 1:00:48 PM UTC+5:30, Ranjith Chungath wrote: > I have a cell which is composed of multiple div, img eleemnts. When I > register for mouse in/out events, > onBrowserEvent gets called multiple times when the mouse is hovere

drag and drop group

2013-05-16 Thread bhomass
I have been using GWT native Dnd successfully. Now I have a need to create Dnd group. This means if Widget A and panel B are in the same group, I want to allow user to drag A into B. C and D forms another group. So, A can not be dropped onto D, only C can. and likewise, C can not be dropped int

Re: I/O 2013 - GWT Sessions?

2013-05-16 Thread Michael Joyner
Good. I am looking forward to seeing them. On Thu, May 16, 2013 at 12:21 PM, Jens wrote: > > Doesn't look like either are being recorded. Oh well. > > > They will be recorded. It just takes some time to put them online ;) > > Read comments in: > > https://plus.google.com/111085781306219684730/

Re: I/O 2013 - GWT Sessions?

2013-05-16 Thread Jens
> Doesn't look like either are being recorded. Oh well. They will be recorded. It just takes some time to put them online ;) Read comments in: https://plus.google.com/111085781306219684730/posts/42jN7J2i15G https://plus.google.com/u/0/112375874198651423592/posts/YduBRKv4Kba -- J. -- You r

Re: hash fragment gets dropped when some special characters are present (period, slash...)

2013-05-16 Thread milan . molbio
my bad, turned out it's related to spiffyui, here's a small project to demonstrate the bug: https://github.com/mbsimonovic/spiffyui-hash-bug. So just excluding spiffiui.min.js fixes the bug. I'm gonna write to the spiffyui developers... ms On Thursday, May 16, 2013 1:09:41 PM UTC+2, Thomas Bro

Re: I/O 2013 - GWT Sessions?

2013-05-16 Thread David
Doesn't look like either are being recorded. Oh well. On Tuesday, May 14, 2013 8:43:43 PM UTC-4, Craig Mitchell wrote: > > I'd have to agree with Rob on that one! :-) > > Looks like there are two sessions: > > GWT Roadmap for the Future: > https://developers.google.com/events/io/sessions/32783

Re: Slotted - A Slot/Nesting Extension to Activities and Places

2013-05-16 Thread V.B.
Fantastic. Thank you! -- 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

Re: IE8 enormous memory consumption

2013-05-16 Thread Marteijn Nouwens
We also noticed this behavior in IE. We found out that this was due to how the image sprites were being used. Make sure icons of the same size are in the same sprite. This helped in our system. We have 16 48 96 128 and finnaly one ImageResource that has all theother images. Op dinsdag 1

Re: CSS

2013-05-16 Thread Spear Timothy
David, Take your idea a touch further. Ideally make it bi-directional between CSS and generated Java classes. In the UiBinder you utilize the generated Java classes for the references. At that point the GWT could tune the CSS and document generation model very quick. It could also be tuned for

Re: CSS

2013-05-16 Thread Pablo Nussembaum
I agree with Timothy that GWT as a framework makes almost impossible to create "runtime themeable"  application. While doing with plain js is pretty straight forward, here is what we did: in the index.html then in code: eve

Re: CSS

2013-05-16 Thread David
Hi, You don;t need to use just one CssResource. I use one per widget type. This makes it really easy to restyle and to manage. I also make sure that my custom widgets allow for a CssResource or even a ClientBundle as parameter so that you can define your own styles. What I do not like right now a

Re: CSS

2013-05-16 Thread Thomas Broyer
On Thursday, May 16, 2013 1:55:25 PM UTC+2, Timothy Spear wrote: > > Thomas, > > If the style only applies to the one widget I would agree. But I have a > very small mind and only have room in my head for things to look "one way"; > even when on the user admin pages, group admin pages, work qu

Re: CSS

2013-05-16 Thread Spear Timothy
Thomas, If the style only applies to the one widget I would agree. But I have a very small mind and only have room in my head for things to look "one way"; even when on the user admin pages, group admin pages, work queue, work item :D I actually ended back there (I actually link the stylesh

Re: hash fragment gets dropped when some special characters are present (period, slash...)

2013-05-16 Thread Thomas Broyer
On Thursday, May 16, 2013 1:02:19 PM UTC+2, milan wrote: > > found the reason, the nocache.js script tag was before the history iframe. > This is really strange! …as the iframe is only used by IE6/7, and you were reporting issues in Firefox, Chrome and Safari. > > regards, > Milan > > On Wed

Re: hash fragment gets dropped when some special characters are present (period, slash...)

2013-05-16 Thread milan
found the reason, the nocache.js script tag was before the history iframe. regards, Milan On Wednesday, May 15, 2013 11:33:44 AM UTC+2, milan wrote: > > > I'm getting some weird behavior with Activities&Places (GWT 2.4.0 and > 2.5.1), in FF 20/21/Chrome/Safari 6, both prod and dev mode. > > Her

Re: CSS

2013-05-16 Thread Jens
> Inline style in each UiBinder xml file will not be maintainable. > From a code maintenance perspective stylesheets should be used > extensively. > Its not maintainable by designers if they quickly want to see changes because they would need to recompile the application. Super Dev Mode help

Re: CSS

2013-05-16 Thread Thomas Broyer
On Thursday, May 16, 2013 10:44:33 AM UTC+2, Timothy Spear wrote: > > Inline style in each UiBinder xml file will not be maintainable. > From a code maintenance perspective stylesheets should be used extensively. > I find it much better for maintainability if the styles for a given "widget" is

Re: How can I integrate things like the twitter 'tweet button'?

2013-05-16 Thread Thomas Broyer
On Thursday, May 16, 2013 10:38:51 AM UTC+2, Mohammad Al-Quraian wrote: > > Well everything seems fine if I injected the script after the anchor is > created. The problem now is that the tweets counts are always equal for > different urls, and I believe that maybe due to the twitter doesn't >

Re: CSS

2013-05-16 Thread Spear Timothy
Inline style in each UiBinder xml file will not be maintainable. >From a code maintenance perspective stylesheets should be used extensively. The suggested solution for this is to include the css as part of the ClientBundle as a resource. This suggested solution is predicated on the following ass

Re: How can I integrate things like the twitter 'tweet button'?

2013-05-16 Thread Mohammad Al Quraian
Well everything seems fine if I injected the script after the anchor is created. The problem now is that the tweets counts are always equal for different urls, and I believe that maybe due to the twitter doesn't consider example.com/#1 different than example.com/#2. Do you know how can I fix that?

Re: CSS

2013-05-16 Thread Jens
Hm a bit more details would be nice. What is complicated on using ClientBundle? What code does it replicate? Whats wrong with: ExampleWidget.gwt.xml: /* specific rules for ExampleWidget, could also be externalized into a separate css file */ .myWidget { padding:5px; } .conte