Re: DevMode for Firefox 14

2012-07-19 Thread koma
thx a million !

On Thursday, July 19, 2012 3:23:43 AM UTC+2, Alan Leung wrote:


 any change for Linux 64bit ?


 The 64bit Linux works now.

 http://acleung.com/ff14-linux64.xpi

 -Alan
  

   -- 
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/google-web-toolkit/-/VNv09WK9dL4J.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/YZ9p9Yx_sF8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.5-rc1 feature uirender is not working as expected.

2012-07-19 Thread Thomas Broyer


On Thursday, July 19, 2012 5:36:13 AM UTC+2, Vasu wrote:

 Yes you were right, it is instantiating new Person object. But if I try to 
 set Type to empty string validation fails and I cannot run the application.


I didn't mean to set it to the empty string, but to not use the attribute: 
ui:with field=person /

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/c421BfbJvhAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Positioning widgets

2012-07-19 Thread zame...@gmail.com
Hi All,

I would like to use this layout in my gwt app:

The main window has a VerticalPanel, the first element of  this VP is a 
TabPanel and the second is a status panel.  
1. I need to force the status panel to the bottom of screen. Could I do it 
with something? Maybe with a css?
I tried to use DockPanel, but I don't need north panel and it seems to be 
it can't be 0px height if it is empty:(

2. I need to know the size of free area inside the tabpanel. How can I get 
it? I tried with:
the screen size is:  $wnd.innerWidth; (JSNI)
getting tabpanel.tabbar size with tabpanel.getTabBar().getOffsetHeight()
the statusPanel size with statuspanel.getOffsetWidth()

the free space size should be:
screen size-statuspanel size-tabbar size;

It seems to be good in Opera browser, but cannot works exactly in FF and 
Chrome. 

Is there any other settings to getting exact size of free area? 

thx a lot
Zamek

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/4ggKTK5U8iEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-19 Thread Ed Bras
I ust run some tests and noticed the following in Chrome (in FF 12 they all
return true):
1) Document.get().isOrHasChild(element) - false
2) Document.get().getDocumentElement().isOrHasChild(element) - true
3) Document.get().getBody().isOrHasChild(element) - true
4) widget.isAttache() - true

Appearantly there is a difference between being attached to the Document
node and Body node.
Why?
What to do next to isolate/solve this?
Note: the above statements are called in a DeferedCommand just after the
widget is added to the RootPanel. It concers an widget that is shown as a
popup panel (absolute positioned)

- Ed

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Ed
Thanks for your detailed and clear example and your time.
I am aware of this concept and use it a lot.

But, sorry, that doesn't solve my problem.
Like you said, I have to set 2 styles on the widget, which is not what I 
want as I want it to be style agnostic as much as possible.
That said, it's a style optimization to reuse styles rules at several 
places which the widget shouldn't be aware of, especially not if it 
concerns reusable widgets.
Example: I want to reuse the background, select, etc.. style rules in your 
bluewidget, redwidget, but also calendar widget, niceButton widget, etc... 
in several places that have nothing to do with eachother.

I think I need closure-stylesheet, see: 
http://code.google.com/p/closure-stylesheets, But like thomas mentioned 
this is currently not supported in GWT.
I am currently looking if I can parse my css fils with closure-stylesheets 
before the gwt compiler processes them. Let's see if this is possible 
through a maven plugin...

- Ed

Op donderdag 19 juli 2012 02:08:32 UTC+2 schreef Joseph Lust het volgende:

 Ed,

 My apologies for my late reply. I've been ruminating over this the last 
 few days as I've thought about doing it, but never made a working example. 
 Here is the example. We have our BaseWidget and our BlueWidget which 
 extends it. Everything about the widget is defined in the BaseWidget CSS, 
 except the color,fill, and border seen in the extending BlueWidget.


 https://lh5.googleusercontent.com/-WK8iyPCFL2M/UAdLoBuFgrI/B6Q/NvG5i68nOFQ/s1600/Screen+Shot+2012-07-18+at+7.48.59+PM+%282%29.png
 The CSSResource interface files:

 // BaseWidgetCSSResource.javapackage com.testbed.client.resources;
 import com.google.gwt.resources.client.CssResource;
 public interface BaseWidgetCssResource extends CssResource {
   String baseWidget(); }

 // BlueWidgetCSSResource.javapackage com.testbed.client.resources;
 public interface BlueWidgetCssResource extends BaseWidgetCssResource {
   String blueWidget(); }

 The CSS Files:

 // baseWidget.cssdiv.baseWidget {
   background-color: red;
   border: 1px solid darkred;
   border-radius: 10px;
   padding: 20px;
   height: 45px;
   width: 100px;
   margin:10px;
   text-align:center;
   vertical-align:middle;
   font-size: 2em;
   float: left;}

 // blueWidget.cssdiv.baseWidget.blueWidget {
   /* same as regular widget, but with a few changes */
   background-color: blue;
   border: 5px dashed orange;
   color: white;}

 ClientBundle Resource:

 // WidgetResources.javapackage com.testbed.client.resources;
 import com.google.gwt.resources.client.ClientBundle;import 
 com.google.gwt.resources.client.CssResource.Import;
 public interface WidgetResources extends ClientBundle {
   // base widget
   @Source(css/baseWidget.css)
   BaseWidgetCssResource baseCss();

   // pulls in both files, overriding one with the other
   @Import(BaseWidgetCssResource.class)
   @Source({ css/blueWidget.css, css/baseWidget.css })
   BlueWidgetCssResource blueCss();}

 Implementing Class:

 // Testbed.javapackage com.testbed.client;
 import com.google.gwt.core.client.EntryPoint;import 
 com.google.gwt.core.client.GWT;import 
 com.google.gwt.user.client.Element;import 
 com.google.gwt.user.client.ui.RootPanel;import 
 com.testbed.client.resources.WidgetResources;
 public class TestBed implements EntryPoint {

   WidgetResources resources = GWT.create(WidgetResources.class);

   public void onModuleLoad() {

   // make sure the CSS is here
   resources.blueCss().ensureInjected();
   
   Element baseWidget = RootPanel.get(baseWidget).getElement();
   baseWidget.addClassName(resources.blueCss().baseWidget());
   
   Element blueWidget = RootPanel.get(blueWidget).getElement();
   blueWidget.addClassName(resources.blueCss().baseWidget());
   blueWidget.addClassName(resources.blueCss().blueWidget());

   }}

 I hope that helps. Note that you would need to use both classes as someone 
 else mentioned, so baseWidget blueWidget. You could make a helper method 
 do do that, or just apply both.

 Sincerely,
 Joseph


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/644IQ3b_2zYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Ed
And windows ? ;)

Op woensdag 18 juli 2012 05:30:15 UTC+2 schreef David Guo het volgende:

 Hi Alan,

 Too bad to hear this news. Hope someone can continue to work on this 
 devmode.


 On Wednesday, July 18, 2012 8:08:06 AM UTC+8, Alan Leung wrote:

 While I am technically no longer on the team, I got curious and started 
 looking at the FF14 changes.

 There were some slight changes in the JS Object layout again but they 
 seem easy enough to fix.

 I have built it for Linux 32 bit: http://acleung.com/ff14-linux32.xpi

 -Alan



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/gnog92pFC8kJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Creating a new Custombutton by subclassing a Button

2012-07-19 Thread javed ansari
I have created one CustomButton which consists of once image and one
label.

public class CustomButton extends Button implements ClickHandler{
// call an empty constructor
public ConfigButton() {
}

private Label conflbl;
private Button btn;

public CustomButton(String imgUrl, String btnText) {
this.parentScreen = parentScreen;
Image img = new Image();
img.setUrl(imgUrl);
img.setSize(20px, 20px);
AbsolutePanel panel = new AbsoultePanel();
panel.add(img, nleft + 110, ntop - 30);
btn = new Button();
btn.setSize(250px, 300px);
conflbl = new Label(btnText);
conflbl.setSize(130, 60);
panel.add(btn, nleft, ntop);
panel.add(conflbl, nleft + 60, ntop + 40);
conflbl.addClickHandler(this);
btn.addClickHandler(this);
}
@Override
public void onClick(ClickEvent event) {
// Handle the label and the button click here.
// Then raise a fresh Click handler. But How???
this.Click() // This is not working

}
}

I want to raise a click event once this button is clicked and
obviously in the OnClick() handler of the CustomButton should receive
Source as the CustomButton (Not as Button). This way our CustomButton
will work truly as a button. I tried calling this.Click() but it is
not raising the event.

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Thread deadlock when trying to maven compile using 2.5-rc1

2012-07-19 Thread JoseM
Even with local workers set to 1 I get the same deadlock, I forgot to mention 
that is what I did in my second post 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/udDjlLJo5N8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Joseph Lust
Ed,

Ideally (in the spirit of CSSResource) you'd hack the 
CSSResource/ClientBundle setup so that when extending a CSSResource, you 
could automatically have .parent.child concatenated for you to parent 
child to be returned when you ask for the class name. However, I've done 
no such hacking in the GWT source.


Sincerely,
Joseph

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/bUNS9VK5n1QJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Creating a new Custombutton by subclassing a Button

2012-07-19 Thread Joseph Lust
Your issue is this.Click(). In Java, method names are not capitalized, so 
I would not expect this method to exist. You want 
Button.click()http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/Button.html#click()
.



Sincerely,
Joseph

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/qtCHkH4puHgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Editor Framework and Multi Select Listbox

2012-07-19 Thread Alex opn
Hello all,

I tried to implement a MultiSelectValueListBox based on the 
ValueListBoxhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/ValueListBox.htmlbut
 I did not come far. Not even worth posting my messy code here :)

I hope anyone has done this already and can help me out on how to start or 
give some ideas how to approach this. I quickly ran out of ideas.

I am wondering why this is not shipped with the Editor Framework anyway and 
why no one seems to need this functionality? Googled a bit and only found 
one question on Stackoverflow regarding this. [1]

[1] GWT ValueListBox: can it support more than a single 
selection?http://stackoverflow.com/questions/5108192/gwt-valuelistbox-can-it-support-more-than-a-single-selection

Regards
Alex

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/-GDNE2t5QCMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Samyem Tuladhar
Is it possible to have some community mechanism to separate the FX GWT 
plugin so that we don't have to have this discussion every single time a 
new FX comes up in 6 weeks? 

On Thursday, July 19, 2012 6:07:26 AM UTC-4, Ed wrote:

 And windows ? ;)

 Op woensdag 18 juli 2012 05:30:15 UTC+2 schreef David Guo het volgende:

 Hi Alan,

 Too bad to hear this news. Hope someone can continue to work on this 
 devmode.


 On Wednesday, July 18, 2012 8:08:06 AM UTC+8, Alan Leung wrote:

 While I am technically no longer on the team, I got curious and started 
 looking at the FF14 changes.

 There were some slight changes in the JS Object layout again but they 
 seem easy enough to fix.

 I have built it for Linux 32 bit: http://acleung.com/ff14-linux32.xpi

 -Alan



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ROzuIS8zZrAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT Unit Testing

2012-07-19 Thread Ferenc Balogh
I'd like to develop unit tests for my GWT application, but I'm facing some 
exotic problems:

1, The server side is in PHP so I'm using my own apache http server, not 
the embedded jetty in GWT. I'd like to do the same for unit testing, but 
-noserver option is not available for unit tests. I could bypass this 
limitation with some hacking, but there is an other issue:
2, Some of the server side code is generated dynamically during compile / 
development mode run (with a custom linker). Since unit testing ignores the 
-war parameter also, these files are being put to some mystical place.

I'd like my PHP files to be processed by the external apache http server, 
and the generated content to be put into a given folder.

BTW here is the process what I'd like to test:

1, GWT application makes request to generated PHP file
2, Generated PHP file calls functions from existing PHP files (which are 
developed together with the unit tests)
3, Return values get serialized to JSON
4, JSON gets deserialized at client side (very complicated, this is what I 
want to test)

Any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/MjYibwKYU6oJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Juan Pablo Gardella
Hi Ed,

How do you format the code?

Cheers,
Juan

2012/7/19 Ed post2edb...@gmail.com

 Thanks for your detailed and clear example and your time.
 I am aware of this concept and use it a lot.

 But, sorry, that doesn't solve my problem.
 Like you said, I have to set 2 styles on the widget, which is not what I
 want as I want it to be style agnostic as much as possible.
 That said, it's a style optimization to reuse styles rules at several
 places which the widget shouldn't be aware of, especially not if it
 concerns reusable widgets.
 Example: I want to reuse the background, select, etc.. style rules in your
 bluewidget, redwidget, but also calendar widget, niceButton widget, etc...
 in several places that have nothing to do with eachother.

 I think I need closure-stylesheet, see:
 http://code.google.com/p/closure-stylesheets, But like thomas mentioned
 this is currently not supported in GWT.
 I am currently looking if I can parse my css fils with closure-stylesheets
 before the gwt compiler processes them. Let's see if this is possible
 through a maven plugin...

 - Ed

 Op donderdag 19 juli 2012 02:08:32 UTC+2 schreef Joseph Lust het volgende:

 Ed,

 My apologies for my late reply. I've been ruminating over this the last
 few days as I've thought about doing it, but never made a working example.
 Here is the example. We have our BaseWidget and our BlueWidget which
 extends it. Everything about the widget is defined in the BaseWidget CSS,
 except the color,fill, and border seen in the extending BlueWidget.


 https://lh5.googleusercontent.com/-WK8iyPCFL2M/UAdLoBuFgrI/B6Q/NvG5i68nOFQ/s1600/Screen+Shot+2012-07-18+at+7.48.59+PM+%282%29.png
 The CSSResource interface files:

 // BaseWidgetCSSResource.javapackage com.testbed.client.resources;
 import com.google.gwt.resources.**client.CssResource;
 public interface BaseWidgetCssResource extends CssResource {
  String baseWidget(); }

 // BlueWidgetCSSResource.javapackage com.testbed.client.resources;
 public interface BlueWidgetCssResource extends BaseWidgetCssResource {
  String blueWidget(); }

 The CSS Files:

 // baseWidget.cssdiv.baseWidget {
  background-color: red;
  border: 1px solid darkred;
  border-radius: 10px;
  padding: 20px;
  height: 45px;
  width: 100px;
  margin:10px;
  text-align:center;
  vertical-align:middle;
  font-size: 2em;
  float: left;}

 // blueWidget.cssdiv.baseWidget.blueWidget {
  /* same as regular widget, but with a few changes */
  background-color: blue;
  border: 5px dashed orange;
  color: white;}

 ClientBundle Resource:

 // WidgetResources.javapackage com.testbed.client.resources;
 import com.google.gwt.resources.**client.ClientBundle;import 
 com.google.gwt.resources.**client.CssResource.Import;
 public interface WidgetResources extends ClientBundle {
  // base widget
  @Source(css/baseWidget.css)
  BaseWidgetCssResource baseCss();

  // pulls in both files, overriding one with the other
  @Import(BaseWidgetCssResource.**class)
  @Source({ css/blueWidget.css, css/baseWidget.css })
  BlueWidgetCssResource blueCss();}

 Implementing Class:

 // Testbed.javapackage com.testbed.client;
 import com.google.gwt.core.client.**EntryPoint;import 
 com.google.gwt.core.client.GWT**;import 
 com.google.gwt.user.client.**Element;import 
 com.google.gwt.user.client.ui.**RootPanel;import 
 com.testbed.client.resources.**WidgetResources;
 public class TestBed implements EntryPoint {

  WidgetResources resources = GWT.create(WidgetResources.cla**ss);

  public void onModuleLoad() {

  // make sure the CSS is here
  resources.blueCss().ensureInje**cted();
  
  Element baseWidget = RootPanel.get(baseWidget).ge**tElement();
  baseWidget.addClassName(resour**ces.blueCss().baseWidget());
  
  Element blueWidget = RootPanel.get(blueWidget).ge**tElement();
  blueWidget.addClassName(resour**ces.blueCss().baseWidget());
  blueWidget.addClassName(resour**ces.blueCss().blueWidget());

  }}

 I hope that helps. Note that you would need to use both classes as
 someone else mentioned, so baseWidget blueWidget. You could make a helper
 method do do that, or just apply both.

 Sincerely,
 Joseph

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/644IQ3b_2zYJ.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
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: Positioning widgets

2012-07-19 Thread Ümit Seren
1.) For these kind of layouts I would always use the LayoutPanels. Instead 
of a DockLayoutPanel you can use a LayoutPanel. Something along these lines:

g:LayoutPanel
g:layer left=0 right=0 top=0 bottom=15px
!-- Main Window content !--
/g:layer
g:layer left=0 right=0 top=15px bottom=0
   !-- Status bar --
/g:layer
/g:LayoutPanel

This will create a 15px status bar at the bottom and the rest will be 
filled by the main content window.
The advantage of using LayoutPanels is that when you resize the browser it 
will call onResize on the child widgets (provided they implement the 
RequiresResize interface). 

2.) Usually you can use getOffsetHeight() and getOffsetWidth() on the 
container widget to get the available dimensions. However you might have to 
defer the call with scheduleDeferred() until the end of the event loop 
because if you call the function to early (before all widgets are attached 
and the layout is done) it will return 0. 


On Thursday, July 19, 2012 10:06:16 AM UTC+2, zam...@gmail.com wrote:

 Hi All,

 I would like to use this layout in my gwt app:

 The main window has a VerticalPanel, the first element of  this VP is a 
 TabPanel and the second is a status panel.  
 1. I need to force the status panel to the bottom of screen. Could I do it 
 with something? Maybe with a css?
 I tried to use DockPanel, but I don't need north panel and it seems to be 
 it can't be 0px height if it is empty:(

 2. I need to know the size of free area inside the tabpanel. How can I get 
 it? I tried with:
 the screen size is:  $wnd.innerWidth; (JSNI)
 getting tabpanel.tabbar size with tabpanel.getTabBar().getOffsetHeight()
 the statusPanel size with statuspanel.getOffsetWidth()

 the free space size should be:
 screen size-statuspanel size-tabbar size;

 It seems to be good in Opera browser, but cannot works exactly in FF and 
 Chrome. 

 Is there any other settings to getting exact size of free area? 

 thx a lot
 Zamek



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/SjfaLmXTRPEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Anderson Aroeira Araujo
You're *awesome*. Thank you!

On Tuesday, July 17, 2012 9:08:06 PM UTC-3, Alan Leung wrote:

 While I am technically no longer on the team, I got curious and started 
 looking at the FF14 changes.

 There were some slight changes in the JS Object layout again but they seem 
 easy enough to fix.

 I have built it for Linux 32 bit: http://acleung.com/ff14-linux32.xpi

 -Alan


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/01g9HkM9ESIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Eduardo Garcia Lopez
Hi, I know probably this is not the appropriate thread, but I have problems 
with DevMode plugin for Chrome OSX Lion since last Chrome update,

is it only me?

El jueves, 19 de julio de 2012 08:25:52 UTC+2, glascaleia escribió:

 For osx lion??

 Inviato da iPhone

 Il giorno 19/lug/2012, alle ore 03:23, Alan Leung acle...@google.com ha 
 scritto:

 On Wed, Jul 18, 2012 at 4:03 PM, koma k...@koma.be wrote:

 any change for Linux 64bit ?


 The 64bit Linux works now.

 http://acleung.com/ff14-linux64.xpi

 -Alan
  

   -- 
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/google-web-toolkit/-/VNv09WK9dL4J.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.


  -- 
 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-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/BTgzs0_mgYMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Thread deadlock when trying to maven compile using 2.5-rc1

2012-07-19 Thread JoseM
I put in a bug 
report: http://code.google.com/p/google-web-toolkit/issues/detail?id=7536

On Thursday, July 19, 2012 6:38:28 AM UTC-4, Thomas Broyer wrote:



 On Thursday, July 19, 2012 6:44:04 AM UTC+2, JoseM wrote:

 If it helps I am trying to build this using my Mac.

 I also realized that there is also now a 2.5-rc1 version of the plugin so 
 I tried with that one and I still get the deadlock:


 It's not surprising, as the deadlock is in GWT, not the gwt-maven-plugin.

 As a workaround, try using localWorkers1/localWorkers (or 
 -Dgwt.localWorkers=1) to use a single-threaded build and hopefully avoid 
 the deadlock.

 You'll note also that it seems to rather be a bug in Java rather than in 
 GWT, as the locks seem to have been created by standard classes (java.awt.* 
 and sun.security.*) rather than GWT ones.

 Worth a bug report for GWT though (and then see how it's triaged)


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/wcpVn4SGNVcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Thomas Broyer


On Thursday, July 19, 2012 3:18:18 PM UTC+2, Samyem Tuladhar wrote:

 Is it possible to have some community mechanism to separate the FX GWT 
 plugin so that we don't have to have this discussion every single time a 
 new FX comes up in 6 weeks?


What do you mean by community mechanism? and separate the Firefox GWT 
plugin?



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/aJtiRzr1oAoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Editor Framework and Multi Select Listbox

2012-07-19 Thread Thomas Broyer
It depends on the widget you intend to use for display.
Given that ListBox has no notion of value other than a bare String, I'd 
rather go with CellList or CellTable (but if Strings are OK, then just use 
a ListBox).
The easiest would then be to use a LeafValueEditorSetMyValue wrapping 
the SelectionModel; similar actually to the ValuePicker.
We've actually implemented just that a few days ago in a proto.

On Thursday, July 19, 2012 3:16:40 PM UTC+2, Alex opn wrote:

 Hello all,

 I tried to implement a MultiSelectValueListBox based on the 
 ValueListBoxhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/ValueListBox.htmlbut
  I did not come far. Not even worth posting my messy code here :)

 I hope anyone has done this already and can help me out on how to start or 
 give some ideas how to approach this. I quickly ran out of ideas.

 I am wondering why this is not shipped with the Editor Framework anyway 
 and why no one seems to need this functionality? Googled a bit and only 
 found one question on Stackoverflow regarding this. [1]

 [1] GWT ValueListBox: can it support more than a single 
 selection?http://stackoverflow.com/questions/5108192/gwt-valuelistbox-can-it-support-more-than-a-single-selection

 Regards
 Alex


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/_1r0Vx1rQR4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Ed Bras

 How do you format the code?

@Juan: what do you mean?

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Juan Pablo Gardella
How show formatted text inside the body's mail? like this:

// BaseWidgetCSSResource.javapackage com.testbed.client.resources;
import com.google.gwt.resources.client.CssResource;
public interface BaseWidgetCssResource extends CssResource {
String baseWidget(); }

Cheers,
Juan

2012/7/19 Ed Bras post2edb...@gmail.com

 How do you format the code?

 @Juan: what do you mean?

 --
 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-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-19 Thread Jeff Chimene
On 07/19/2012 02:51 AM, Ed Bras wrote:
 I ust run some tests and noticed the following in Chrome (in FF 12 they
 all return true):

Well, that's annoying...

 1) Document.get().isOrHasChild(element) - false
 2) Document.get().getDocumentElement().isOrHasChild(element) - true
 3) Document.get().getBody().isOrHasChild(element) - true
 4) widget.isAttache() - true
 
 Appearantly there is a difference between being attached to the Document
 node and Body node.
 Why?
 What to do next to isolate/solve this?

What problem is it you're trying to solve? That's going to dictate the
solution.

 Note: the above statements are called in a DeferedCommand just after the
 widget is added to the RootPanel. It concers an widget that is shown as
 a popup panel (absolute positioned)

Maybe a clickHandler(), but again, what problem is it you're trying to
solve?

Cheers,
jec

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: TextResource vs Constant

2012-07-19 Thread Lars
Excellent advice... Thanks Thomas  Joseph.

I'm assuming when it comes down to deciding b/w using the Constants or 
Messages interfaces, the decision is based upon whether you need the 
substitution features available by using messages?

Thanks again,
Lars

On Wednesday, July 18, 2012 8:42:28 PM UTC-4, Joseph Lust wrote:

 To give credit where it's due, TB pointed this out first. I'd scribed the 
 response and then headed home for the evening and then posted. No offense 
 TB.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/wwOc7OjSj0MJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Jens


 How show formatted text inside the body's mail?


You can use Github or Google Code to convert your plain text code into 
styled HTML that you can use in Mails / Google Groups.

See: 
https://groups.google.com/d/topic/google-web-toolkit/t6mXHRPVOfM/discussion

-- J

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/FeHBMIwLku0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Thread deadlock when trying to maven compile using 2.5-rc1

2012-07-19 Thread EMan
I am seeing the same thing.  Curious if this really is a jvm bug, how is 
this working at google?

On Thursday, July 19, 2012 11:20:30 AM UTC-4, JoseM wrote:

 I put in a bug report: 
 http://code.google.com/p/google-web-toolkit/issues/detail?id=7536

 On Thursday, July 19, 2012 6:38:28 AM UTC-4, Thomas Broyer wrote:



 On Thursday, July 19, 2012 6:44:04 AM UTC+2, JoseM wrote:

 If it helps I am trying to build this using my Mac.

 I also realized that there is also now a 2.5-rc1 version of the plugin 
 so I tried with that one and I still get the deadlock:


 It's not surprising, as the deadlock is in GWT, not the gwt-maven-plugin.

 As a workaround, try using localWorkers1/localWorkers (or 
 -Dgwt.localWorkers=1) to use a single-threaded build and hopefully avoid 
 the deadlock.

 You'll note also that it seems to rather be a bug in Java rather than in 
 GWT, as the locks seem to have been created by standard classes (java.awt.* 
 and sun.security.*) rather than GWT ones.

 Worth a bug report for GWT though (and then see how it's triaged)



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Qro43-VMcwMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Code Formatting/Highlights for GWT Group Postings?

2012-07-19 Thread Jens


Huu...just found Markdown Here @ 
https://chrome.google.com/webstore/detail/elifhakcjgalahccnjkneoccemfahfoa 

After you have installed it you can write Github-flavoured Markdown into 
any Textarea ( = Google Groups, Gmail, ...) and then right click into the 
TextArea and choose Markdown Toggle to make it look pretty :-) 

public static void main(String[] args) {
  System.out.println(Thats awesome!);
}

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/VjZRgvKTCG4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Chak Lai
It has been confirm that the release date for Windows 8 is October 26, 2012.

Windows 8 also includes the next version of its browser: Internet Explorer 
10.

Will GWT 2.5 (final release) support IE10?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/sPWhL2fCRq8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Ed Bras

 could automatically have .parent.child concatenated for you to parent
 child to be returned when you ask for the class name. However,


@Joseph: that's not even such a bad idea. Indeed you could use a Delegator
class that implements that Widget style interface that forwards the call to
the correct CssResource interface. In case you want to add an extra styl,
you just concatenate two style method calls.
It's not ideal, but possible.

I think a good solution would be that GWT integrates with the
closure-stylesheets project. GWT could not have to worry about the css
programming like the current browser-style-dependent conditions. This is
done by the closure-stylesheet project. New features/updated added to the
closure-stylesheets project would automatically be available I think.

On Thu, Jul 19, 2012 at 3:06 PM, Joseph Lust lifeofl...@gmail.com wrote:

 Ed,

 Ideally (in the spirit of CSSResource) you'd hack the
 CSSResource/ClientBundle setup so that when extending a CSSResource, you
 could automatically have .parent.child concatenated for you to parent
 child to be returned when you ask for the class name. However, I've done
 no such hacking in the GWT source.


 Sincerely,
 Joseph

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/bUNS9VK5n1QJ.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: TextResource vs Constant

2012-07-19 Thread 3xM
you can also access it programmatically like this:

@UiField ButtonMessages msg;

public void someMethod() {
// set string programmatically
someElement.setInnerText(msg.getString());}

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/VucY5IDu7RIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Document.get().isOrHasChild(element) != isAttached() in CHrome ??

2012-07-19 Thread Ed Bras

 What problem is it you're trying to solve? That's going to dictate the
 solution.


The problem is solved: not using the method  construction:
Document.get().isOrHasChild(element).
Instead I use:  Document.get().getDocumentElement().isOrHasChild(element)

But, the outcome smells like a bug, so maybe somebody can try to reproduce
this. If you can reproduce it, it's a bug, otherwise I might have to dig
deeper and make an isolated test and hope I can still reproduce it. If so,
I can drop the test here. Or maybe it's just some stupid coding mistake I
overlook.

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Use RequestFactoryProxy on UiBinder Template.

2012-07-19 Thread Daniel Mauricio Patino León
Should be great if we can use a proxy on a UiBinder template with 
the ui:with

I tryed to do it, but i get a error.

public class VerPresupuestos extends TabItem
  PacienteProxy pacienteProxy;
  public VerPresupuestos(final PacienteProxy pacienteProxy) {
  this.pacienteProxy = pacienteProxy;
  initWidget(uiBinder.createAndBindUi(this));
   }
...
}

and on the UiBinder template.

ui:with type=xx.xxx.Project.shared.Model.Paciente.PacienteProxy 
field=pacienteProxy/ui:with

g:Label width=100% height=100% styleName={style.lbl}Presupuestos de 
ui:text from={pacienteProxy.getNombre}/ui:text/g:Label 

i get an exception:

13:26:44.736 [ERROR] [Porject] Deferred binding result type  
xx.xxx.Project.shared.Model.Paciente.PacienteProxy' should not be abstract.

Would be nice make thing like this.

I use GWT 2.4

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Kf6_BZEWZQkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



AbstractCell use

2012-07-19 Thread NotChris
We are using a combination of GWT and Ext-GWT 3.0 and we are in the process 
of converting from GXT 2.1 to Ext-GWT 3.0.   The application uses a 3.0 
grid with various columns to represent the data.  One of the columns 
contains an icon which when moused over should display an image as a 
tooltip with other server retrieved details displayed as well.   That 
column now uses an AbstractCell to display the image tooltip which works 
fine.  But, we had previously used a callback method in 2.1 using 
htmlContainer where we would retrieve data from the server and display it 
above and below the image tooltip.  AbstractCell has a render method but 
the server data has to be retrieved before the render takes place.  I am 
not sure how to incorporate this callback method into AbstractCell and/or 
the grid.  The model data we need is passed into the render method 
for AbstractCell.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/6e-71LBrEgkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Invoking the entry point create new Session if WebCastellum is used

2012-07-19 Thread Rasha ElSayed
Hi 
I am using GWT 2.4 and I am facing strange problem

My application is based on spring webflow, my page is entered using webflow 
then it initiates GWT entry point to draw some controls

I am also using WebCastellum security proxy

The problem is everytime I enter my page a new session is created. I track 
this by HttpSessionListener class. 

When I either disabled WebCastellum OR removed the entry point js files, no 
session was created.

So the problem is in the combination WebCastellum + GWT.

I found that WebCastellum examines the request that launches the entry 
point, finds the attached session is null so it creates a new session.

Any idea why the session of the entry point request is null?

Regards
Rasha 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/by3ploUfIukJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Jeremy Kittel
Hi Alan,

I might be asking the wrong person, but any chance of compiling a mac 
version of the updated plugin for FF 14?

Thanks,

Jeremy

On Tuesday, July 17, 2012 7:08:06 PM UTC-5, Alan Leung wrote:

 While I am technically no longer on the team, I got curious and started 
 looking at the FF14 changes.

 There were some slight changes in the JS Object layout again but they seem 
 easy enough to fix.

 I have built it for Linux 32 bit: http://acleung.com/ff14-linux32.xpi

 -Alan


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/NTfzWdgUcNQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode not working in Chrome after update

2012-07-19 Thread Jonathan Fuerth
On Tuesday, 17 July 2012 15:14:44 UTC-4, Thomas Broyer wrote:


 On Tuesday, July 17, 2012 8:21:36 PM UTC+2, Andy wrote:

 I still get the error Could not load GWT DevMode Plugin and the normal 
 offer to download it (even though it was and is again installed).


 Make sure click to play (or some other similar configuration for 
 plugins) is disabled.
 I enabled it a while ago (it works well to disable Flash ads when browsing 
 the web ;-) ), while I was doing Firefox-specific dev, and when I switched 
 back to Chrome I didn't understand at first why the plugin wouldn't load: 
 it was just blocked by the click to play setting.


This just started happening for me too. I double-checked my click-to-play 
setting, but it is disabled.

I've tried launching chrome with debug logging enabled 
(/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome 
--enable-logging --v=1) and sure enough, it logs this when starting up:

NP_Initialize (gwt-hosted-mode/c++), pid=50572
NPP_New(instance=0x13003b30,mode=1,argc=4,args=[id=pluginEmbed,type=application/x-gwt-hosted-mode,width=10,height=10],saved=0x0):
 
version=27
[50568:-1603582656:521971471140471:ERROR:webplugin_delegate_proxy.cc(364)] 
PluginMsg_Init returned false
[50568:-1603582656:521971494501638:ERROR:webplugin_impl.cc(269)] Couldn't 
initialize plug-in
NPP_Destroy(instance=0x13003b30)
LocalObjectTable::freeAll()
Disconnecting already disconnected channel

And it logs this similar output whenever a tab with the gwt.codeserver=... 
parameter in its URL is opened:

NPP_New(instance=0x1150b0,mode=1,argc=4,args=[id=pluginEmbed,type=application/x-gwt-hosted-mode,width=10,height=10],saved=0x0):
 
version=27
[50596:-1603582656:522023913703684:ERROR:webplugin_delegate_proxy.cc(364)] 
PluginMsg_Init returned false
[50596:-1603582656:522023918672837:ERROR:webplugin_impl.cc(269)] Couldn't 
initialize plug-in
NPP_Destroy(instance=0x1150b0)
LocalObjectTable::freeAll()
Disconnecting already disconnected channel

Any ideas?

-Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/DpRmV_dlnwQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT with Spring Webflow

2012-07-19 Thread Inko37
Hey,

is it possible to use GWT and Spring Webflow? I don't know if there are any 
problems with the asynchronous calls. If it will work, is there any ready 
solution for it? Or is there any other solution to manage the webflow with 
GWT?

best regards,
Inko

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/llbZpOcJlrIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



AutoBean Category Implementation Inheritance

2012-07-19 Thread Benjamin DeLillo

When using AutoBean Categories

Given:
I have two interfaces, A and B
B extends A

I have a Category class for each, ACategory and BCategory 

I have an @Category annotation on my ObjectFactory for each

Question:
will the AutoBean produced by factory.b() have the methods implemented 
in ACategory and in BCategory, or only those in BCategory?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/thOpW1s5cIEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



How to implement loops in render method of new UiRenderer feature

2012-07-19 Thread Piotr Janik
Hi there,
 I know that gwt templates don't support loops.
However, I'd like to have a loop in a render() method.

Let's say I have this simple UiRenderer template:
ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder
ui:with field='name' type='java.lang.String' /
div id=main
h2ui:text from='{name}' //h2
div id=HERE/div
/div
/ui:UiBinder

What I need to do is put some new code into div#HERE from render method. 
Something like:
public void render(Context context, EntityProxy e, SafeHtmlBuilder sb) {
renderer.render(sb, e.getName());
for(Item item : e.getItems()) {
String s = span+item.getName()+/span;
//How to put every s from this loop  into div#HERE ?
 }
}

Obviously, this can be done in traditional way without templates. I'm just 
wondering if it is possible with new UiRenderer.

Thanks,
Peter

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/fYwMtC7YrCQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Shopping Cart OpenSource using GWT

2012-07-19 Thread [MVVG] Saif
Anyone have opinions on this?  What shopping cart do people use with GWT or 
SmartGWT?  KonaKart and SoftSlate seem to be the main Java players in this 
space, but they seem too heavy, I'd prefer something simple I can integrate 
with GWT.  Any thoughts?

On Thursday, June 28, 2012 4:23:15 AM UTC-4, Supper GWTer wrote:

 Does anyone know any shopping cart opensource using GWT? 
 Serverside may be in Java or .NET.

 Regards,


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/0Bj2R53LTx4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Removing Grouping separator in FormUiTextBoxInteger

2012-07-19 Thread Sumana
Hi,

By default, the value in the FormUiTextBoxInteger is loaded with , 
separator.

I want to remove it from the FormUiTextBoxInteger. Is there any way to 
remove it?

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/k8tPFyb75A8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode not working in Chrome after update

2012-07-19 Thread francesco foresti
*I'm experiencing* this issue as *well. The Chrome configuration for 
plugins is set on run automatically (or something similar, the UI is in 
italian).*
One thing I've noticed is that when activating the click to play setting, 
Chrome won't notify that the GWT plugin can't be loaded, and will just 
display
the missing plugin page.
This is happening on Chrome v. 22.0.1209.0 canary and Chrome v. 22.0.1207.1 
dev, both on a Mac.

Il giorno martedì 17 luglio 2012 21:14:44 UTC+2, Thomas Broyer ha scritto:



 On Tuesday, July 17, 2012 8:21:36 PM UTC+2, Andy wrote:

 I still get the error Could not load GWT DevMode Plugin and the normal 
 offer to download it (even though it was and is again installed).


 Make sure click to play (or some other similar configuration for 
 plugins) is disabled.
 I enabled it a while ago (it works well to disable Flash ads when browsing 
 the web ;-) ), while I was doing Firefox-specific dev, and when I switched 
 back to Chrome I didn't understand at first why the plugin wouldn't load: 
 it was just blocked by the click to play setting.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/QFFGTD5iRYcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



ODK Aggregate Server

2012-07-19 Thread Jennifer Cheong
Hi,

I cannot connect to the ODK Aggregate Server.

It kept linking me to Web Application Starter Project shown as the 
Error.png.

How do I go to the server? As I can go in initially, but I do not know what 
happen which link me to Web Application Starter Project.

I want to go to the Server shown in Correct.png.

Anyone know how to solved this?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/64uSDt-vLvIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

attachment: Error.pngattachment: Correct.png

Running Weka server-side and communicating via RPC

2012-07-19 Thread William Ibekwe
I am experiencing these errors: when I run my Weka program on the server 
side and try to communicate with it using RPC.


Problem instantiating package manager. Using DefaultPackageManager.
Jul 18, 2012 6:20:19 PM 
com.google.appengine.tools.development.ApiProxyLocalImpl log
SEVERE: javax.servlet.ServletContext log: Exception while dispatching 
incoming RPC call
com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public 
abstract java.util.ArrayList 
tts.client.PredictClient.myMethod(java.lang.String[],int,java.util.ArrayList)' 
threw an unexpected exception: java.lang.ExceptionInInitializerError
at 
com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure(RPC.java:385)
at 
com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:588)
at 
com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:208)
at 
com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:248)
at 
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at 
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
at 
com.google.appengine.tools.development.HeaderVerificationFilter.doFilter(HeaderVerificationFilter.java:35)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:60)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:125)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.tools.development.BackendServersFilter.doFilter(BackendServersFilter.java:97)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at 
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at 
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
at 
com.google.appengine.tools.development.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:94)
at 
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at 
com.google.appengine.tools.development.JettyContainerService$ApiProxyHandler.handle(JettyContainerService.java:370)
at 
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at 
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at 
org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:938)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at 
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
at 
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)
Caused by: java.lang.ExceptionInInitializerError
at weka.core.Utils.readProperties(Utils.java:142)
at weka.core.Capabilities.init(Capabilities.java:261)
at weka.filters.Filter.getCapabilities(Filter.java:160)
at weka.filters.unsupervised.attribute.Add.getCapabilities(Add.java:284)
at weka.filters.Filter.getCapabilities(Filter.java:193)
at weka.filters.Filter.testInputFormat(Filter.java:446)
at weka.filters.Filter.setInputFormat(Filter.java:464)
at weka.filters.unsupervised.attribute.Add.setInputFormat(Add.java:310)
at 
weka.classifiers.timeseries.core.TSLagMaker.createDateTimestampRemap(TSLagMaker.java:1578)
at 
weka.classifiers.timeseries.core.TSLagMaker.getTransformedData(TSLagMaker.java:3077)
at 
weka.classifiers.timeseries.WekaForecaster.buildForecaster(WekaForecaster.java:1007)
at tts.server.Predictor.predict(Predictor.java:151)
at 
tts.server.PredictClientServlet.myMethod(PredictClientServlet.java:42)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at 

Re: GWT RPC not working behind Apache and Tomcat

2012-07-19 Thread Mads Ravn
From the lack of extra information, I gather you weren't successful in 
forcing your friend.

On Wednesday, February 29, 2012 7:22:43 PM UTC+1, mukarev wrote:

 Hi again, 

 a friend of mine solved the problem during the night. I will force him 
 to write the solution here. 

 Thanks for your thoughts. 

 Greetz Markus 

 On 25 Feb., 18:25, mukarev muka...@googlemail.com wrote: 
  Hi folks, 
  
  I'try to serve two gwt webapps via one apache from one tomcat with JK 
  and I'm always running in the same error. Apache sends a 404 and tells 
  me that it's not able to find the servlet if I try to communcate via 
  RPC. 
  
  I have two virtual hosts pointing at the directories within tomcat 
  webapps. The webapps are running successfully as long as I don't try 
  to communicate via RPC. It seems that Apache isn't able to resolve the 
  requested service. 
  
  Need help, I'm sitting here around hopeless. 
  
  Thanks! 
  
  Markus

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/z8caKQwLPwgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Alan Leung
http://acleung.com/ff14-win.xpi

So far so good.one more to go (mac)

-Alan


On Wed, Jul 18, 2012 at 9:57 AM, Jeremy Kittel 
jeremy.kit...@gm.mediabeacon.com wrote:

 Hi Alan,

 I might be asking the wrong person, but any chance of compiling a mac
 version of the updated plugin for FF 14?

 Thanks,

 Jeremy


 On Tuesday, July 17, 2012 7:08:06 PM UTC-5, Alan Leung wrote:

 While I am technically no longer on the team, I got curious and started
 looking at the FF14 changes.

 There were some slight changes in the JS Object layout again but they
 seem easy enough to fix.

 I have built it for Linux 32 bit: 
 http://acleung.com/ff14-**linux32.xpihttp://acleung.com/ff14-linux32.xpi

 -Alan

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/NTfzWdgUcNQJ.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Juan Pablo Gardella
Thanks Alan!!!

2012/7/19 Alan Leung acle...@google.com

 http://acleung.com/ff14-win.xpi

 So far so good.one more to go (mac)

 -Alan


 On Wed, Jul 18, 2012 at 9:57 AM, Jeremy Kittel 
 jeremy.kit...@gm.mediabeacon.com wrote:

 Hi Alan,

 I might be asking the wrong person, but any chance of compiling a mac
 version of the updated plugin for FF 14?

 Thanks,

 Jeremy


 On Tuesday, July 17, 2012 7:08:06 PM UTC-5, Alan Leung wrote:

 While I am technically no longer on the team, I got curious and started
 looking at the FF14 changes.

 There were some slight changes in the JS Object layout again but they
 seem easy enough to fix.

 I have built it for Linux 32 bit: 
 http://acleung.com/ff14-**linux32.xpihttp://acleung.com/ff14-linux32.xpi

 -Alan

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/NTfzWdgUcNQJ.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


  --
 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-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Samyem Tuladhar
What I mean is it is extremely annoying to be working with GWT when the 
plugin keeps constantly breaking. Whatever it takes to fix this situation 
would make everyone's life easy. The environment we got is Win32/XP on 
Firefox and when it automatically updates, time and again, it's 
extremely frustrating. 

On Thursday, July 19, 2012 12:24:11 PM UTC-4, Thomas Broyer wrote:



 On Thursday, July 19, 2012 3:18:18 PM UTC+2, Samyem Tuladhar wrote:

 Is it possible to have some community mechanism to separate the FX GWT 
 plugin so that we don't have to have this discussion every single time a 
 new FX comes up in 6 weeks?


 What do you mean by community mechanism? and separate the Firefox GWT 
 plugin?



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/aRBKL4lbg4IJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread coderinabstract
Same problem with last Chrome update earlier this morning... dev mode does 
not work... any pointers.. tried reinstalling with chrome://extensions 
drop-in, redoing everything, whitelisting ips the works... keeps on wanting 
to reinstall.. completely broken with Chrome and also have noticed some 
layout behaviour change on apps, which is unrelated Maybe worthwile to 
start new thread..

On Thursday, July 19, 2012 10:45:07 AM UTC-4, Eduardo Garcia Lopez wrote:

 Hi, I know probably this is not the appropriate thread, but I have 
 problems with DevMode plugin for Chrome OSX Lion since last Chrome update,

 is it only me?

 El jueves, 19 de julio de 2012 08:25:52 UTC+2, glascaleia escribió:

 For osx lion??

 Inviato da iPhone

 Il giorno 19/lug/2012, alle ore 03:23, Alan Leung acle...@google.com 
 ha scritto:

 On Wed, Jul 18, 2012 at 4:03 PM, koma k...@koma.be wrote:

 any change for Linux 64bit ?


 The 64bit Linux works now.

 http://acleung.com/ff14-linux64.xpi

 -Alan
  

   -- 
 You received this message because you are subscribed to the Google 
 Groups Google Web Toolkit group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/google-web-toolkit/-/VNv09WK9dL4J.

 To post to this group, send email to google-web-toolkit@googlegroups.com
 .
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.


  -- 
 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-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/1gmXz6f78cEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT with Spring Webflow

2012-07-19 Thread Natanael Maldonado
May be this helps you:

http://www.springbyexample.org/examples/simple-gwt-spring-webapp.html

2012/7/18 Inko37 inkognito133...@googlemail.com

 Hey,

 is it possible to use GWT and Spring Webflow? I don't know if there are
 any problems with the asynchronous calls. If it will work, is there any
 ready solution for it? Or is there any other solution to manage the webflow
 with GWT?

 best regards,
 Inko

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/llbZpOcJlrIJ.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.




-- 



Atte:
Natanael Maldonado

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Ed Bras
Thanks Alan, it works fine.

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: DevMode for Firefox 14

2012-07-19 Thread Gal Dolber
The Chrome plugin has been broken for a long time and for FF just disable
automatic updates and update manually when the plugin gets updated.

Also now there's superdevmode, that unless your project is really big works
really good, in every browser and I'm even using it on the iPad.

Complaining every time a new FF version comes out wont solve anything, I
don't think having a website tested on FF13 for one week, until the plugin
gets updated, will affect anyone's business. Its not like the compiled code
is incompatible with FF14...

Use superdevmode, disable autoupdate or learn how to update the plugins
yourself.

On Thu, Jul 19, 2012 at 5:58 PM, coderinabstract
coderinabstr...@gmail.comwrote:

 Same problem with last Chrome update earlier this morning... dev mode does
 not work... any pointers.. tried reinstalling with chrome://extensions
 drop-in, redoing everything, whitelisting ips the works... keeps on wanting
 to reinstall.. completely broken with Chrome and also have noticed some
 layout behaviour change on apps, which is unrelated Maybe worthwile to
 start new thread..


 On Thursday, July 19, 2012 10:45:07 AM UTC-4, Eduardo Garcia Lopez wrote:

 Hi, I know probably this is not the appropriate thread, but I have
 problems with DevMode plugin for Chrome OSX Lion since last Chrome update,

 is it only me?

 El jueves, 19 de julio de 2012 08:25:52 UTC+2, glascaleia escribió:

 For osx lion??

 Inviato da iPhone

 Il giorno 19/lug/2012, alle ore 03:23, Alan Leung acle...@google.com
 ha scritto:

 On Wed, Jul 18, 2012 at 4:03 PM, koma k...@koma.be wrote:

 any change for Linux 64bit ?


 The 64bit Linux works now.

 http://acleung.com/ff14-**linux64.xpihttp://acleung.com/ff14-linux64.xpi

 -Alan


   --
 You received this message because you are subscribed to the Google
 Groups Google Web Toolkit group.
 To view this discussion on the web visit https://groups.google.com/d/**
 msg/google-web-toolkit/-/**VNv09WK9dL4Jhttps://groups.google.com/d/msg/google-web-toolkit/-/VNv09WK9dL4J
 .

 To post to this group, send email to google-web-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://groups.google.com/group/google-web-toolkit?hl=en
 **.


  --
 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-toolkit@**
 googlegroups.com google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to google-web-toolkit+**
 unsubscr...@googlegroups.comgoogle-web-toolkit+unsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-web-toolkit?hl=enhttp://groups.google.com/group/google-web-toolkit?hl=en
 **.

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/1gmXz6f78cEJ.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.




-- 
A world citizen

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Code Formatting/Highlights for GWT Group Postings?

2012-07-19 Thread Joseph Lust
I think my daily visits to GitHub just dropped 90%. Thanks!



Joe

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/dEalpSFWlkwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread coderinabstract
After today morning Chrome update on the dev version... Version 22.0.1207.1 
dev
Dev mode has stopped working and keeps on asking to reinstall.
Have tried everything from re-install with chrome://extensions drop-in, 
re-whitelist ips, clear all history etc and no luck. Saw one other person 
has similar problem on the Firefox thread.
Any updates/pointers... others experiencing this..
Thanks and Cheers..

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/9wZmyr4r2WoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: import common style rules?

2012-07-19 Thread Thomas Broyer


On Thursday, July 19, 2012 8:25:29 PM UTC+2, Ed wrote:

 could automatically have .parent.child concatenated for you to parent 
 child to be returned when you ask for the class name. However,  


 @Joseph: that's not even such a bad idea. Indeed you could use a Delegator 
 class that implements that Widget style interface that forwards the call to 
 the correct CssResource interface. In case you want to add an extra styl, 
 you just concatenate two style method calls. 
 It's not ideal, but possible.

 I think a good solution would be that GWT integrates with the 
 closure-stylesheets project. GWT could not have to worry about the css 
 programming like the current browser-style-dependent conditions. This is 
 done by the closure-stylesheet project. New features/updated added to the 
 closure-stylesheets project would automatically be available I think.


Closure Stylesheets is missing @sprite/gwt-image and value() though (as 
well as calling Java static methods in @if-s; and to be honest, I prefer 
GWT's @if than Closure's comment-based directives).

Note that ClientBundle is pluggable so you can very well integrate Closure 
Stylesheets support without patching GWT (create a GssResource with its own 
ResourceGenerator).

If you intend to work on it, please update us here or on 
google-web-toolkit-contribut...@googlegroups.com or in 
http://code.google.com/p/google-web-toolkit/issues/detail?id=4422 (I talked 
about Closure Stylesheet in the issue I originally merged that one in; you 
can also find my notes on 
G+ https://plus.google.com/113945685385052458154/posts/JboFtJFX3hE or on 
this group's archives)

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/m1tOVMJMSRkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread Thomas Broyer


On Thursday, July 19, 2012 11:52:45 PM UTC+2, coderinabstract wrote:

 After today morning Chrome update on the dev version... Version 
 22.0.1207.1 dev
 Dev mode has stopped working and keeps on asking to reinstall.
 Have tried everything from re-install with chrome://extensions drop-in, 
 re-whitelist ips, clear all history etc and no luck. Saw one other person 
 has similar problem on the Firefox thread.
 Any updates/pointers... others experiencing this..


No problem with that exact same version (I'm currently giving a training on 
GWT, and using it all day long; my Firefox keeps freezing; and being on 
Linux I don't have any alternative).
One of my trainees have the problem though, and with a stable version of 
Chrome (on Windows XP), while others on the group can use Chrome for 
DevMode and have had no problem.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/zfx1Aih0jQ8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Thomas Broyer


On Thursday, July 19, 2012 8:05:49 PM UTC+2, Chak Lai wrote:

 It has been confirm that the release date for Windows 8 is October 26, 
 2012.

 Windows 8 also includes the next version of its browser: Internet Explorer 
 10.

 Will GWT 2.5 (final release) support IE10?


No.
But maybe 2.5.1, which we expect to release somewhere around September.
If we're lucky, we can simply use the standard-based implementations that 
already serve as a base for the non-IE browsers.
Note that it'll (unfortunately) add a new permutation.

Finally, in case we don't have time to do it, you'll still be able to run 
GWT apps in IE10 by asking it to use it's IE9 compatibility engine (meta 
name=X-UA-Compatible content=IE=9; chrome=1)

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/hSNmy2wocNMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Use RequestFactoryProxy on UiBinder Template.

2012-07-19 Thread Daniel Mauricio Patino León
Yhea! this rocks!

I missed the @UiField(provided=true)

Nice, its better to do at this way than change in code.

Thank you thomas.

2012/7/19 Thomas Broyer t.bro...@gmail.com

 I don't see the @UiField(provided=true) on the pacienteProxy field on your
 code.


 On Thursday, July 19, 2012 8:37:23 PM UTC+2, Daniel Mauricio Patino León
 wrote:

 Should be great if we can use a proxy on a UiBinder template with
 the ui:with

 I tryed to do it, but i get a error.

 public class VerPresupuestos extends TabItem
   PacienteProxy pacienteProxy;
   public VerPresupuestos(final PacienteProxy pacienteProxy) {
   this.pacienteProxy = pacienteProxy;
   initWidget(uiBinder.**createAndBindUi(this));
}
 ...
 }

 and on the UiBinder template.

 ui:with type=xx.xxx.Project.shared.**Model.Paciente.PacienteProxy
 field=pacienteProxy/ui:**with

 g:Label width=100% height=100% styleName={style.lbl}**Presupuestos
 de ui:text from={pacienteProxy.**getNombre}/ui:text/g:**Label

 i get an exception:

 13:26:44.736 [ERROR] [Porject] Deferred binding result type
 xx.xxx.Project.shared.Model.**Paciente.PacienteProxy' should not be
 abstract.

 Would be nice make thing like this.

 I use GWT 2.4

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/AT7NWaDMGRIJ.

 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.




-- 
ISC. Daniel Mauricio Patiño León.
Director ejecutivo
Liondev S.A. de C.V.

-- 
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-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: TextResource vs Constant

2012-07-19 Thread Joseph Lust
You can mix and match too, as I've see properties files being used to fill 
Maps the messages interfaces too.

One note however, is that if you place to internationalize a bunch of 
strings, then you just need to have a .properties file translated and add 
the language permutation to your module. So, if you go the properites file 
route, you are i18n ready.


Sincerely,
Joseph

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/65ZzvtQIvQUJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread coderinabstract
Thanks Thomas.. must be something in my environment.. and by the way 
congratulations to you for the honor in becoming a member of the GWT 
steering committee... very well deserved. 

On Thursday, July 19, 2012 6:03:34 PM UTC-4, Thomas Broyer wrote:



 On Thursday, July 19, 2012 11:52:45 PM UTC+2, coderinabstract wrote:

 After today morning Chrome update on the dev version... Version 
 22.0.1207.1 dev
 Dev mode has stopped working and keeps on asking to reinstall.
 Have tried everything from re-install with chrome://extensions drop-in, 
 re-whitelist ips, clear all history etc and no luck. Saw one other person 
 has similar problem on the Firefox thread.
 Any updates/pointers... others experiencing this..


 No problem with that exact same version (I'm currently giving a training 
 on GWT, and using it all day long; my Firefox keeps freezing; and being on 
 Linux I don't have any alternative).
 One of my trainees have the problem though, and with a stable version of 
 Chrome (on Windows XP), while others on the group can use Chrome for 
 DevMode and have had no problem.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/q3YhTTsenTgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Regarding GWT with the upcoming Windows 8 and Internet Explorer 10

2012-07-19 Thread Chak Lai
Thank you for the reply.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/EgXriYXO_hsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Dev Mode with latest Chrome update - gwt plugin problem

2012-07-19 Thread coderinabstract
For anybody experiencing this I got it to work with the following...

-- I had a very old dev mode version which was getting updated for the past 
few years.. something must have happened to it during an update cycle in my 
environment.
--Deleted all Chrome installs from my Mac
--Re-installed the production release build for OSX

and everything works fine.. even speed tracer, which I thought  would only 
work on dev build so now only have one Chrome prod release and everything 
is good.

Cheers...


On Thursday, July 19, 2012 9:04:11 PM UTC-4, coderinabstract wrote:

 Thanks Thomas.. must be something in my environment.. and by the way 
 congratulations to you for the honor in becoming a member of the GWT 
 steering committee... very well deserved. 

 On Thursday, July 19, 2012 6:03:34 PM UTC-4, Thomas Broyer wrote:



 On Thursday, July 19, 2012 11:52:45 PM UTC+2, coderinabstract wrote:

 After today morning Chrome update on the dev version... Version 
 22.0.1207.1 dev
 Dev mode has stopped working and keeps on asking to reinstall.
 Have tried everything from re-install with chrome://extensions drop-in, 
 re-whitelist ips, clear all history etc and no luck. Saw one other person 
 has similar problem on the Firefox thread.
 Any updates/pointers... others experiencing this..


 No problem with that exact same version (I'm currently giving a training 
 on GWT, and using it all day long; my Firefox keeps freezing; and being on 
 Linux I don't have any alternative).
 One of my trainees have the problem though, and with a stable version 
 of Chrome (on Windows XP), while others on the group can use Chrome for 
 DevMode and have had no problem.



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/z5D1uqZHQY4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



[gwt-contrib] Re: java.lang.String: adding support for certain regexp embedded java flags (issue1784803)

2012-07-19 Thread t . broyer

I didn't check, but when is StringJreTest launched? Shouldn't it be part
of a TestSuite?

(also, please CC google-web-toolkit-contributors@googlegroups.com in
your reviews; I think you have to join the group first, but you should
be prepared to receive answers there too anyway).


http://gwt-code-reviews.appspot.com/1784803/diff/1/user/super/com/google/gwt/emul/java/lang/String.java
File user/super/com/google/gwt/emul/java/lang/String.java (right):

http://gwt-code-reviews.appspot.com/1784803/diff/1/user/super/com/google/gwt/emul/java/lang/String.java#newcode409
user/super/com/google/gwt/emul/java/lang/String.java:409: return [regex,
jsflags]
How about returning new RegExp(regex, jsFlags) instead?

(possibly accepting flags as argument, for the _replaceReg case)

http://gwt-code-reviews.appspot.com/1784803/diff/1/user/super/com/google/gwt/emul/java/lang/String.java#newcode796
user/super/com/google/gwt/emul/java/lang/String.java:796: * (?i) case
insensitive, (?m) multiline, and (?s) dotall
...only if they affect the whole regexp, e.g. {@code
s.matches((?i)(^https?:))}

(or something like that)

http://gwt-code-reviews.appspot.com/1784803/diff/1/user/super/com/google/gwt/emul/java/lang/String.java#newcode798
user/super/com/google/gwt/emul/java/lang/String.java:798: * TODO(jat):
properly handle Java regex syntax
Maybe we can remove that TODO, as I'm unsure it's still a goal to
pursue.

http://gwt-code-reviews.appspot.com/1784803/diff/1/user/super/com/google/gwt/emul/java/lang/String.java#newcode1033
user/super/com/google/gwt/emul/java/lang/String.java:1033: private
native String _replaceReg(String regex, String replace, String jsflags)
/*-{
GWT doesn't use _ prefixes, also replaceReg is a bit non-natural.
How about simply replace, or maybe doReplace?

http://gwt-code-reviews.appspot.com/1784803/diff/1/user/test/com/google/gwt/emultest/java/lang/StringTest.java
File user/test/com/google/gwt/emultest/java/lang/StringTest.java
(right):

http://gwt-code-reviews.appspot.com/1784803/diff/1/user/test/com/google/gwt/emultest/java/lang/StringTest.java#newcode648
user/test/com/google/gwt/emultest/java/lang/StringTest.java:648: if
(GWT.isClient()) {
please add a comment that this is because isJsStringValue is a native
method. I didn't understand at first why you were guarding that assert.

http://gwt-code-reviews.appspot.com/1784803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] SuggestBox causes native events to fire twice (issue1785803)

2012-07-19 Thread tuckerpmt

Reviewers: ,

Description:
Issue 3533

Please review this at http://gwt-code-reviews.appspot.com/1785803/

Affected files:
  user/src/com/google/gwt/user/client/ui/SuggestBox.java


Index: user/src/com/google/gwt/user/client/ui/SuggestBox.java
===
--- user/src/com/google/gwt/user/client/ui/SuggestBox.java  (revision 11153)
+++ user/src/com/google/gwt/user/client/ui/SuggestBox.java  (working copy)
@@ -1128,17 +1128,15 @@
 }
 break;
 }
-delegateEvent(SuggestBox.this, event);
   }

   public void onKeyPress(KeyPressEvent event) {
-delegateEvent(SuggestBox.this, event);
+// do nothing
   }

   public void onKeyUp(KeyUpEvent event) {
 // After every user key input, refresh the popup's suggestions.
 refreshSuggestions();
-delegateEvent(SuggestBox.this, event);
   }

   public void onValueChange(ValueChangeEventString event) {


--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: SuggestBox causes native events to fire twice (issue1785803)

2012-07-19 Thread tuckerpmt

On 2012/07/19 20:27:56, Patrick Tucker wrote:

http://code.google.com/p/google-web-toolkit/issues/detail?id=3533

http://gwt-code-reviews.appspot.com/1785803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: SuggestBox causes native events to fire twice (issue1785803)

2012-07-19 Thread t . broyer

LGTM

http://gwt-code-reviews.appspot.com/1785803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Add multiple attribute to InputElement / FileUpload widget to enable the HTML5 multiple attribute. (issue1786803)

2012-07-19 Thread skybrian

LGTM



http://gwt-code-reviews.appspot.com/1786803/diff/1/user/test/com/google/gwt/dom/DOMSuite.java
File user/test/com/google/gwt/dom/DOMSuite.java (right):

http://gwt-code-reviews.appspot.com/1786803/diff/1/user/test/com/google/gwt/dom/DOMSuite.java#newcode47
user/test/com/google/gwt/dom/DOMSuite.java:47:
suite.addTestSuite(ImageElementTest.class);
I take it that ImageElementTest wasn't run at all before?

http://gwt-code-reviews.appspot.com/1786803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Add multiple attribute to InputElement / FileUpload widget to enable the HTML5 multiple attribute. (issue1786803)

2012-07-19 Thread skybrian

So one gotcha is that IE apparently doesn't support this attribute:

  http://www.w3schools.com/html5/att_input_multiple.asp

I don't have a Windows box handy, but I did some web searches and
apparently that was still true in IE 9.

So I wonder if this is still useful for your use case? Historically, GWT
has stuck to implementing a portable subset of HTML, though this is no
longer true with the elemental library.


http://gwt-code-reviews.appspot.com/1786803/

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors


[gwt-contrib] Re: Add multiple attribute to InputElement / FileUpload widget to enable the HTML5 multiple attribute. (issue1786803)

2012-07-19 Thread Brian Slesinsky
Hmm... if we put it in, we at least would need to document that it's
not supported by all browsers and skip the tests when we run them on
IE.

But given the limited browser support, I think it might be better to
leave it out of the public API, so as not to mislead anyone. As a
workaround, perhaps you could write code to get the input element from
the FileUpload widget and set this attribute directly?

On Thu, Jul 19, 2012 at 3:24 PM,  heinb...@google.com wrote:
 I can try IE9 at home.  I think this will just default to the single
 case, which will often work for developers.  If that does work, are we
 OK checking this in, or is it a showstopper?

 I was considering Elemental, but we have a bunch of code that already
 uses FileUpload, especially with the events, and this would make it
 much, much easier for us.


 On 2012/07/19 22:17:17, skybrian wrote:

 So one gotcha is that IE apparently doesn't support this attribute:


http://www.w3schools.com/html5/att_input_multiple.asp


 I don't have a Windows box handy, but I did some web searches and

 apparently

 that was still true in IE 9.


 So I wonder if this is still useful for your use case? Historically,

 GWT has

 stuck to implementing a portable subset of HTML, though this is no

 longer true

 with the elemental library.




 http://gwt-code-reviews.appspot.com/1786803/

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors