Re: Centering content in a panel?

2012-08-20 Thread Dennis Haupt
i'm still voting for the flextable

Am 20.08.2012 05:50, schrieb markww:
 Ok so that works (calling setHorizontalAlignment() before widgets are
 added). So now the labels are horizontally centered. 
 
 Still can't seem the vertically center them though. I think it's because
 the VerticalPanel keeps wrapping its contents vertically, even though
 I've set its height to 100% (the red area is the VerticalPanel with
 height=100%):
 
 http://cl.ly/image/0u0k3c3y1H1X
 
 Any ideas here?
 
 Thanks
 
 On Sunday, 19 August 2012 16:55:01 UTC-4, markww wrote:
 
 Hi,
 
 I'd like to make a vertical group of Buttons, and have them centered
 horizontally and vertically in the page.
 
 This page will likely be used on mobile devices, so the contents
 might be taller than the device - so I'll need a scroll bar in those
 cases:
 
 http://cl.ly/image/1x3u2A053S01 http://cl.ly/image/1x3u2A053S01
 
 I'm not sure which set of panels to use for this. A VerticalPanel
 was my first choice, tried the following:
   
 VerticalPanel vp = new VerticalPanel();
 for (int i = 0; i  15; i++) {
 vp.add(new Label(Test  + i));
 }
 vp.setWidth(100%);
 vp.setHeight(100%);
 vp.setVerticalAlignment(HasVerticalAlignment.ALIGN_MIDDLE);
 vp.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_CENTER);
 
 but the contents are still top-left aligned (vertical panel
 background-color is red in this example):
 
 http://cl.ly/image/2V3p0k3E1h15 http://cl.ly/image/2V3p0k3E1h15
 
 There's probably a GWT pattern to do this, any ideas?
 
 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/-/u-l2m4UfhmcJ.
 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: many strange problem when change from rootlayout panel to rootpanel

2012-08-20 Thread Jens
RootLayoutPanel uses absolute positioning while RootPanel does not use 
absolute positioning and is either the body element or any other DIV 
element with a given ID if you use RootPanel.get(id). So RootLayoutPanel 
fills the whole browser window by default while RootPanel.get() is only as 
heigh as its content.

In your case I think you can do:

RootPanel root = RootPanel.get(id);
root.setSize(100%, 100%);
dockLayoutPanel.setSize(100%, 100%);
root.add(dockLayoutPanel);

Because you use DockLayoutPanel and you dont put it into a RootLayoutPanel 
you may also need to listen for window resize events and call onResize() on 
the dockLayoutPanel. Thats something that RootLayoutPanel does 
automatically for all its children. 

-- 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/-/WykI_oAf6BIJ.
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: How to set edge shade for PopupPanel?

2012-08-20 Thread Alex Luya
How to do?Override any method?
On Wed, 2012-08-15 at 17:13 +0800, Jinker Jiang wrote:
 jinkerji...@gmail.com

-- 
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: many strange problem when change from rootlayout panel to rootpanel

2012-08-20 Thread Jens
My bad: html and body must also have a height of 100% to make it work 
(and body also a margin:0px to remove the default margin.)

Also its not a strange behavior.. its just how CSS works. A height of 100% 
only works if the parent element has a height. And thats also true for the 
html and body tag.

-- 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/-/IbOIlqLvlhoJ.
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: StackLayoutPanel and CellPanel

2012-08-20 Thread Charlie
I too, would like to know this.

On Wednesday, June 13, 2012 9:28:56 AM UTC+1, coelho wrote:

  I'm trying to use a CellTable within a StackLayoutPanel
  
 The CellTable does'nt show Items , probably because the size is unkown 
  
 The specs on StackLayoutPanel seem obsolete .
  
 Is there an example somewhere ?
  
 thanks
  
 Patrick


-- 
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/-/PD8jEyZ8FdQJ.
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: Editable CellTable with password column

2012-08-20 Thread Kanagaraj M
I have tried doing that. 
My code is something like follows

public class EditPasswordTextCell extends EditTextCell {


@Override
protected void edit(Context context, Element parent, String value) {
setValue(context, parent, value);
InputElement input = getInputElement(parent);
input.setAttribute(type, password); //$NON-NLS-1$ //$NON-NLS-2$
input.focus();
input.select();
}
}

This brings up a password box when clicking on the cell. But after finished 
editing and the value shown in the column is in plain text. Then i decided 
to override the renderer methods. But most of the methods in EditTextCell 
class are private, so i ended up overriding 

@Override
public void render(Context context, String value, SafeHtmlBuilder sb) {
value = **; //$NON-NLS-1$
super.render(context, value, sb);
}

The above code works fine for first rendering and not for the subsequent. 

Now the question arises, should i extend from EditTextCell 
or AbstractEditableCell?

Can anyone please help me in this?


On Friday, 17 August 2012 23:29:52 UTC+5:30, Juan Pablo Gardella wrote:

 You must write a custom EditTextCell.

 2012/8/17 Kanagaraj M kanaga...@gmail.com javascript:

 I have CellTable with password as one column. I want the password column 
 to be editable.

 I have used EditTextCell to make the password as editable, but the 
 problem is, the password is shown as plain text.

 As like we have PasswordTextBox, do we have any alternative for 
 EditTextCell? or i need to write my own by extending EditTextCell?

 Can anyone please help me in 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/-/v_owA6X5h1wJ.
 To post to this group, send email to 
 google-we...@googlegroups.comjavascript:
 .
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com javascript:.
 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/-/lVFtr45XJ4IJ.
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.



Web app launch view activator

2012-08-20 Thread James
Once I use GWT 2.4 in development mode, Web app launch view activator is 
always running in background. It displays a few line of messages every 
couple of seconds and gains focus in IDE. It is so distracting during 
debug. Is there some way to get rid of this problem?


James

-- 
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/-/-NCg1PrEoF8J.
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 colspan is implemented in DataGrid?

2012-08-20 Thread James
DataGrid is very advanced widget in GWT. DataGrid is supported in html 
table. I love it. But I don't know how to implement colspan feature in 
DataGrid. 


James

-- 
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/-/VJ5xo9U8UKEJ.
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 change to provided=true for HTMLPanel

2012-08-20 Thread RyanZA
It seems to be an issue with the HTMLPanel itself - it blocks @UiField 
(provided=true) explicitly. I still have no idea why, unfortunately.

Quickest workaround is to remove the (provided=true) part, and then make 
the HTMLPanel yourself explicitly, and add it to the original one.

eg in your code, change:

@UiField(provided = true)
HTMLPanel pnlContent;
to
@UiField
HTMLPanel pnlContent;
and

@Override
public Widget asWidget() {
lblName = new LabelToolItem(row.getStr());
pnlContent = new HTMLPanel(renderer.render(row));
return binder.createAndBindUi(this);
}

to

@Override
public Widget asWidget() {
lblName = new LabelToolItem(row.getStr());
HTMLPanel pnlContent_temp = new HTMLPanel(renderer.render(row));
Widget w = binder.createAndBindUi(this); 
pnlContent.add(pnlContent_temp);
return w;
}



On Monday, August 20, 2012 3:52:46 AM UTC+2, Peter Leong wrote:

 I'm having same problem.  Did you find a solution?

 My code uses 'IsWidget', no Composite: 
 http://subversion.assembla.com/svn/freshcode_public/learn/gwt/src/main/java/biz/freshcode/learn/gwt/client/uispike/gxt/LineItem.java
 Also, I'm using 2.5.0-rc1 because of the Maven plugin.

 Pete

 On Monday, July 23, 2012 4:48:13 AM UTC+10, RyanZA wrote:

 Previously in GWT 2.4 and below, this would work:

 UI Binder:
 g:HTMLPanel ui:field=myPanel /

 Code:
 @UiField (provided=true)
 HTMLPanel myPanel;

 myPanel = new HTMLPanel(foobar);


 In GWT 2.5, this now gives an error:

 (gwt source)
 // Make sure that, if there is a UiField for this panel, it isn't
 // (provided = true), as that isn't supported.
 if (uiField != null  uiField.isProvided()) {
   writer.die(UiField %s for HTMLPanel cannot be provided., 
 fieldName);
 }


 Just wondering why provided=true is no longer supported? AFAIK this was 
 the purpose of provided=true in UiBinder?

 I've now changed the code to have UiBinder create an HTMLPanel for me and 
 then add my widget to it, but this gives an extra unneeded wrapping div in 
 my HTML...



-- 
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/-/Cj-qwRC0h40J.
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 publishing to websphere takes crap load of time!

2012-08-20 Thread Elhanan
hi...
each time i change a resouce file in *.ui.xml it takes a lng time for 
everything to compile,publish, start and stop the module.

i get  these log messages:
[17:43:32:253 IDT 20/08/12] 000b ApplicationMg I   WSVR0227I: User 
initiated module stop operation requested on Module, FnxAdmin.war, of 
application, FnxAdminEAR
[17:43:32:300 IDT 20/08/12] 000b servlet   I 
com.ibm.ws.webcontainer.servlet.ServletWrapper doDestroy SRVE0253I: 
[FnxAdminEAR] [/FnxAdmin] [ApplicationServiceImpl]: Destroy successful.
[17:43:32:316 IDT 20/08/12] 000b servlet   I 
com.ibm.ws.webcontainer.servlet.ServletWrapper doDestroy SRVE0253I: 
[FnxAdminEAR] [/FnxAdmin] [/Admin.jsp]: Destroy successful.
[17:43:32:347 IDT 20/08/12] 000b servlet   I 
com.ibm.ws.webcontainer.servlet.ServletWrapper doDestroy SRVE0253I: 
[FnxAdminEAR] [/FnxAdmin] [com.fnx.security.services.auth.Authorizer]: 
Destroy successful.
[17:43:32:409 IDT 20/08/12] 000b ApplicationMg I   WSVR0228I: User 
initiated module stop operation request completed on Module, FnxAdmin.war, 
of application, FnxAdminEAR
[17:44:08:332 IDT 20/08/12] 000b ApplicationMg I   WSVR0225I: User 
initiated module start operation requested on Module, FnxAdmin.war, of 
application, FnxAdminEAR
[17:44:20:738 IDT 20/08/12] 000b webappI 
com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading Web 
Module: FnxAdmin.
[17:44:21:003 IDT 20/08/12] 000b WASSessionCor I SessionContextRegistry 
getSessionContext SESN0176I: Will create a new session context for 
application key default_host/FnxAdmin
[17:44:21:019 IDT 20/08/12] 000b servlet   I 
com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
[FnxAdminEAR] [/FnxAdmin] [com.fnx.security.services.auth.Authorizer]: 
Initialization successful.
[17:44:21:035 IDT 20/08/12] 000b WASAxis2Exten I   WSWS7037I: The 
/AuthorizerService URL pattern was configured for the 
com.fnx.security.services.auth.Authorizer servlet located in the 
FnxAdmin.war web module.
[17:44:21:644 IDT 20/08/12] 000b webcontainer  I 
com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web 
Module FnxAdmin has been bound to 
default_host[*:9081,*:80,*:9444,*:5063,*:5062,*:443].
[17:44:21:675 IDT 20/08/12] 000b ApplicationMg I   WSVR0226I: User 
initiated module start operation request completed on Module, FnxAdmin.war, 
of application, FnxAdminEAR
[17:44:21:722 IDT 20/08/12] 000b AppBinaryProc I   ADMA7021I: 
Distribution of application FnxAdminEAR completed successfully.
[17:44:21:769 IDT 20/08/12] 000b FileRepositor A   ADMR0009I: Document 
cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deltas/FnxAdminEAR/delta-1345473804394
 
is created.
[17:44:21:832 IDT 20/08/12] 000b FileRepositor A   ADMR0010I: Document 
cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deployments/FnxAdminEAR/deployment.xml
 
is modified.
[17:44:21:863 IDT 20/08/12] 000b FileRepositor A   ADMR0010I: Document 
cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deployments/FnxAdminEAR/FnxAdmin.war/WEB-INF/servicesIndex.xml
 
is modified.
[17:44:22:003 IDT 20/08/12] 000b FileRepositor A   ADMR0010I: Document 
cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deployments/FnxAdminEAR/META-INF/ibm-application-runtime.props
 
is modified.


i don't understand why all of this is needed if it's only the client and no 
server side

-- 
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/-/POYPnAYOWzMJ.
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 2.4 App doesn't run on IEs 9 anymore. Got error on GWT's Image class.

2012-08-20 Thread Maxim Schäfner
Hello GWT community.
For some reason, we can't run our webpage on IEs  9.
We are still using GWT 2.4.0 and it's UIBInders and before the following 
occur, we had that error never before.
What's the matter with this? Why Image? And why it says we should inherit 
it? This has been never required before:

2012-08-20 17:05:48,676 FATAL [btpool0-8] gwt-log: Uncaught Exception:
java.lang.RuntimeException: Deferred binding failed for 
'com.google.gwt.user.client.ui.Image' (did you forget to inherit a required 
module?)
at com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:53)
at com.google.gwt.core.client.GWT.create(GWT.java:97)
at 
com.eee.client.EEEController_MyUiBinderImpl.createAndBindUi(EEEController_MyUiBinderImpl.java:79)
at 
com.eee.client.EEEController_MyUiBinderImpl.createAndBindUi(EEEController_MyUiBinderImpl.java:1)
at com.eee.client.EEEController.init(EEEController.java:152)
at com.eee.client.EEEController.getInstance(EEEController.java:158)
at com.eee.client.ntryPointHome$1.execute(ntryPointHome.java:43)
at 
com.google.gwt.core.client.impl.SchedulerImpl$Task$.executeScheduled$(SchedulerImpl.java:50)
at 
com.google.gwt.core.client.impl.SchedulerImpl.runScheduledTasks(SchedulerImpl.java:228)
at 
com.google.gwt.core.client.impl.SchedulerImpl.flushPostEventPumpCommands(SchedulerImpl.java:388)
at 
com.google.gwt.core.client.impl.SchedulerImpl$Flusher.execute(SchedulerImpl.java:78)
at 
com.google.gwt.core.client.impl.SchedulerImpl.execute(SchedulerImpl.java:138)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
at 
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
at 
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
at 
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:337)
at 
com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:218)
at 
com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
at 
com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:561)
at 
com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:269)
at 
com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:213)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
at 
com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
at 
com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
at 
com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:292)
at 
com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:546)
at 
com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:363)
at java.lang.Thread.run(Thread.java:680)
Caused by: com.google.gwt.core.ext.UnableToCompleteException: (see previous 
log entries)
at 
com.google.gwt.dev.shell.ModuleSpace.rebindAndCreate(ModuleSpace.java:503)
at com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:49)
... 37 more

In IE9 and all other browsers we don't get that and never before.

Regards,
Max

-- 
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/-/F2dPeaEg4K0J.
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 publishing to websphere takes crap load of time!

2012-08-20 Thread Thomas Broyer


On Monday, August 20, 2012 4:52:33 PM UTC+2, Elhanan wrote:

 hi...
 each time i change a resouce file in *.ui.xml it takes a lng time for 
 everything to compile,publish, start and stop the module.

 i get  these log messages:
 [17:43:32:253 IDT 20/08/12] 000b ApplicationMg I   WSVR0227I: User 
 initiated module stop operation requested on Module, FnxAdmin.war, of 
 application, FnxAdminEAR
 [17:43:32:300 IDT 20/08/12] 000b servlet   I 
 com.ibm.ws.webcontainer.servlet.ServletWrapper doDestroy SRVE0253I: 
 [FnxAdminEAR] [/FnxAdmin] [ApplicationServiceImpl]: Destroy successful.
 [17:43:32:316 IDT 20/08/12] 000b servlet   I 
 com.ibm.ws.webcontainer.servlet.ServletWrapper doDestroy SRVE0253I: 
 [FnxAdminEAR] [/FnxAdmin] [/Admin.jsp]: Destroy successful.
 [17:43:32:347 IDT 20/08/12] 000b servlet   I 
 com.ibm.ws.webcontainer.servlet.ServletWrapper doDestroy SRVE0253I: 
 [FnxAdminEAR] [/FnxAdmin] [com.fnx.security.services.auth.Authorizer]: 
 Destroy successful.
 [17:43:32:409 IDT 20/08/12] 000b ApplicationMg I   WSVR0228I: User 
 initiated module stop operation request completed on Module, FnxAdmin.war, 
 of application, FnxAdminEAR
 [17:44:08:332 IDT 20/08/12] 000b ApplicationMg I   WSVR0225I: User 
 initiated module start operation requested on Module, FnxAdmin.war, of 
 application, FnxAdminEAR
 [17:44:20:738 IDT 20/08/12] 000b webappI 
 com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading Web 
 Module: FnxAdmin.
 [17:44:21:003 IDT 20/08/12] 000b WASSessionCor I 
 SessionContextRegistry getSessionContext SESN0176I: Will create a new 
 session context for application key default_host/FnxAdmin
 [17:44:21:019 IDT 20/08/12] 000b servlet   I 
 com.ibm.ws.webcontainer.servlet.ServletWrapper init SRVE0242I: 
 [FnxAdminEAR] [/FnxAdmin] [com.fnx.security.services.auth.Authorizer]: 
 Initialization successful.
 [17:44:21:035 IDT 20/08/12] 000b WASAxis2Exten I   WSWS7037I: The 
 /AuthorizerService URL pattern was configured for the 
 com.fnx.security.services.auth.Authorizer servlet located in the 
 FnxAdmin.war web module.
 [17:44:21:644 IDT 20/08/12] 000b webcontainer  I 
 com.ibm.ws.wswebcontainer.VirtualHost addWebApplication SRVE0250I: Web 
 Module FnxAdmin has been bound to 
 default_host[*:9081,*:80,*:9444,*:5063,*:5062,*:443].
 [17:44:21:675 IDT 20/08/12] 000b ApplicationMg I   WSVR0226I: User 
 initiated module start operation request completed on Module, FnxAdmin.war, 
 of application, FnxAdminEAR
 [17:44:21:722 IDT 20/08/12] 000b AppBinaryProc I   ADMA7021I: 
 Distribution of application FnxAdminEAR completed successfully.
 [17:44:21:769 IDT 20/08/12] 000b FileRepositor A   ADMR0009I: Document 
 cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deltas/FnxAdminEAR/delta-1345473804394
  
 is created.
 [17:44:21:832 IDT 20/08/12] 000b FileRepositor A   ADMR0010I: Document 
 cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deployments/FnxAdminEAR/deployment.xml
  
 is modified.
 [17:44:21:863 IDT 20/08/12] 000b FileRepositor A   ADMR0010I: Document 
 cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deployments/FnxAdminEAR/FnxAdmin.war/WEB-INF/servicesIndex.xml
  
 is modified.
 [17:44:22:003 IDT 20/08/12] 000b FileRepositor A   ADMR0010I: Document 
 cells/PC19262Node02Cell/applications/FnxAdminEAR.ear/deployments/FnxAdminEAR/META-INF/ibm-application-runtime.props
  
 is modified.


 i don't understand why all of this is needed if it's only the client and 
 no server side


It's not needed. This is a tooling issue (Eclipse WST or whatever you're 
using; I don't know WebSphere) 

-- 
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/-/Ugdxby9rA5MJ.
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.4 App doesn't run on IEs 9 anymore. Got error on GWT's Image class.

2012-08-20 Thread Jens
Image itself is included with User.gwt.xml and the only deferred binding 
that Image uses can be found in ClippedImage.gwt.xml (defines special 
behavior for IE6, and is also included via User.gwt.xml). So 
GWT.create(Image.class) should just work.

Maybe its just a cache issue? Clean the gwt-UnitCache folder and the 
browsers cache and reload the page. If this does not help, increase the log 
level of dev mode to Trace/Debug and see what the deferred binding logs 
tell you when using  IE9

-- 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/-/PP-VDg-aIucJ.
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: How colspan is implemented in DataGrid?

2012-08-20 Thread James
Based on the source code, colspan feature seems to be easily implemented by 
changing a little bit on Column class and renderRowValues method in 
AbstractCellTable class.

1. add new method for Column
public class Column {


On Monday, August 20, 2012 9:05:25 AM UTC-4, James wrote:

 DataGrid is very advanced widget in GWT. DataGrid is supported in html 
 table. I love it. But I don't know how to implement colspan feature in 
 DataGrid. 


 James


-- 
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/-/1fGhXrH23pIJ.
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 debug the compiler?

2012-08-20 Thread wahaha
i want to learn some about the source code of the compiler,but how debug it 
?

-- 
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/-/-exyN-E_tOcJ.
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 Elemental Problem with Listner

2012-08-20 Thread Sergey
Hi.
I have the same problem with 
addEventListener 
https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/HGir5DKzf6g[1-25]
Somebody knows the solution?

-- 
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/-/fiPTgKWD3SMJ.
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.



SuperDevMode Compiler Options

2012-08-20 Thread Oliver Krylow
Hi!

Is there a way to pass arguments to the compiler the CodeServer uses?

I am interested in passing the -strict flag for example.

-- 
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/-/Z7uRIyWgoVQJ.
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 Dmp pluging crashed

2012-08-20 Thread aadil alaa
Hello, 

i getting this problem of  DMP pluging of GWT crashed  in my browser 
Google Chrome . (my  version of google chrome is 21.0.1180.79 m )

please how can i fix this problem .

thanks 

best 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/-/yYkooxpeJ48J.
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: Allows UiRenderer styles before the first call to render() (issue1794803)

2012-08-20 Thread rchandia

Ping

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

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


Re: [gwt-contrib] Re: Removed EXPERIMENTAL flag from GWT validation. Cleaned up all JavaDoc comments to reflect this c... (issue1811803)

2012-08-20 Thread Ray Cromwell
We are discussing right now cherry picking it into 2.5

On Fri, Aug 17, 2012 at 1:18 AM,  jens.nehlme...@gmail.com wrote:
 Nice, any chance that it will make its way into 2.5 Final?


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

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

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


[gwt-contrib] Re: Allows UiRenderer styles before the first call to render() (issue1794803)

2012-08-20 Thread rdayal

Sorry for the delay.
LGTM.


http://gwt-code-reviews.appspot.com/1794803/diff/4001/user/src/com/google/gwt/uibinder/rebind/FieldManager.java
File user/src/com/google/gwt/uibinder/rebind/FieldManager.java (right):

http://gwt-code-reviews.appspot.com/1794803/diff/4001/user/src/com/google/gwt/uibinder/rebind/FieldManager.java#newcode144
user/src/com/google/gwt/uibinder/rebind/FieldManager.java:144: * Those
fields are modified every time a template is rendered with the parameter
values.
Maybe add a TODO that indicates that this hack will go away once the
UIBinder generator is split out to handle UIRenderer templates
differently from the UIBinder templates.

http://gwt-code-reviews.appspot.com/1794803/diff/4001/user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java
File user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java
(right):

http://gwt-code-reviews.appspot.com/1794803/diff/4001/user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java#newcode397
user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java:397: // Sets
initializer to a NOOP. These fields are set from parameters passed to
UiRenderer#render().
Sets initializer to a NOOP -- Sets initializer is a NOOP..

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

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