Re: Inner Activity Place Token Changes

2012-01-23 Thread Mike H
In our application, the Mapper passes the info from the Place to a setter exposed by the Activity, just as you have done below. In my attempt 1, the code to re-apply the filter is in the setFilter method - it checks if the Activity has started, and then applies the passed filter. If it not, it is

Re: Truncated JSON problem using RequestBuilder with WCF rest service

2012-01-23 Thread shahid
Anyone On Jan 20, 3:43 pm, shahid shahidza...@gmail.com wrote: Using GWT 2.1, I have a WCF web service with a simple interface and I am trying to call it using RequestBuilder as follows: String url = http://localhost/EmployeeService/Service1.svc/web/ GetEmployees;     RequestBuilder

Re: Can GwtTestCase keep running?

2012-01-23 Thread Thomas Broyer
Have a look at http://code.google.com/p/testgal/ (by GWT Team member Brian Slesinsky) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: How to build a simple GWT event bus using Generators

2012-01-23 Thread Dele
Thomas, I could have used those classes, but I wanted to go in a different direction. Having used Java's AWT and Swing from the early days, Event classes and fireXXX methods have been drilled into my brain as the way events are done. Both Java and GWT based event busses seems to have followed

Re: How to build a simple GWT event bus using Generators

2012-01-23 Thread Thomas Broyer
OK, thanks for the explanation. I see one drawback in the way you implemented it: you're looking at all the types in the TypeOracle, and putting them in a map; that means the compiler cannot prune unused listeners, as all listeners *are* potentially used (they're referenced in the map). This

Re: GWT DialogBox Jquery DatePicker

2012-01-23 Thread Bruno MT
Hola Daniel, Supongo que al final lo que haré será crear un componente que tenga la misma estructura y los mismos estilos que el datePicker de Jquery. Yo soy un mandado, no tengo ningun poder de decisión :( Muchas gracias por contestar. Saludos! Bruno. On 19 ene, 23:13, Daniel Mauricio Patino

how to do the following simple work in GWT

2012-01-23 Thread tong123123
a page divide into two side, the left hand side is a menu, click on a menu will cause the right hand side show the page correspondingly. example: menu1 --submenu 1.1 menu2 menu3 if click on menu 1, the right hand side will show panel 1 if click on menu 2, the right hand side will show panel 2

Re: How to build a simple GWT event bus using Generators

2012-01-23 Thread Dele
Thomas, Your analysis is dead on. There are 17 built-in GWT listeners interfaces and publishers added to the registry (not to mention user- defined listeners) whether or not they are used in the final application. The generated Javascript (*.cache.html) are about 280K, will be interesting to

Re: Native GWT drag and drop vs gwt-dnd vs other?

2012-01-23 Thread Julien Dramaix
Another good way to implement drag and drop widget is o use the drag- and-drop plugin of GWTQuery. It's very easy to use and it supports drag and drop in cell widgets. Examples : http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/GwtSimpleSample/GwtSimpleSample.html Documentation :

Re: Struggling with Crawling

2012-01-23 Thread objectuser
Thanks, Raphael. It helps to know that's not the place to look. :) Interestingly, last night I got two visits from the Googlebot, but neither included the _escaped_fragment_ parameter (I keep the stats separate). So I must still not have something right. I thought the meta tag was enough

Re: Can GwtTestCase keep running?

2012-01-23 Thread wil.pannell
Took at quick look. Looks like a really nice catch. I look forward to working with the tool later and will post feedback. Kudos to Brian... (...and to you, Thomas. I've been benefiting from your timely feedback since you began posting on your blog about gwt 2.1+. Your replies are concise,

Re: building a project with maven on a 16core machine

2012-01-23 Thread pansen
thanks thomas. the ``gen`` option is set:: plugin groupIdorg.codehaus.mojo/groupId artifactIdgwt-maven-plugin/artifactId version${org.codehaus.mojo.gwt-maven-plugin.version}/ version !-- at this point there are no modules to configure. all

vaadin comparison misleading?

2012-01-23 Thread salk31
https://vaadin.com/comparison Against Data binding on server-side data it gives GWT 2.4 nothing. Doesn't the bindery count as this? Am I missing something? Cheers Sam -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Example of code using Data Grid of GWT2.4

2012-01-23 Thread vaibhav jain
Hello Experts, I need to implement the DataGrid of GWT 2.4,Can you please share with me any running example of Data Grid,I looked into the code given at java doc for Data Grid,they have used cell table by mistake in example code of Data Grid. Thanks, Vaibhav -- You

RequestFactory saving ManyToOne relation return null randomly

2012-01-23 Thread nicolas marchais
I have a weird problem using RF. I try to save a EntityProxy which has a ManyToOne relation. Depending the order of the instructions i get a NullPointerException or not. Here is my code : MyRequestContext ctx = ClientFactory.MyRequestFactory.MyRequestContext(); // parent object UserProxy

Suggest adding RichTextArea IsEditor framework.

2012-01-23 Thread Brandon Donnelson
I'd like to suggest adding the RichTextArea to the isEditor framework. http://code.google.com/p/google-web-toolkit/issues/detail?id=5898 Brandon Donnelson http://c.gwt-examples.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: Docs Elaboration Suggestion: Activities Places, Editor Request Factory.

2012-01-23 Thread Brandon Donnelson
Thanks for the help. And for those who find this later. I've added demo and source here: https://demogwtpeople.appspot.com/ - demo http://c.gwt-examples.com/home/ui/places - source links... I'll serialize more info over the weeks here. -- You received this message because you are subscribed

Made a Demo of Activities Places, Request Factory and Editors

2012-01-23 Thread Brandon Donnelson
Hi made a simple demo of Activities Places, Request Factory and Editors. I plan on adding more features and info over the next few weeks and here is an early look. https://demogwtpeople.appspot.com - demo http://c.gwt-examples.com/home/ui/places - links to info and source Watch for more over

form editor in thin client

2012-01-23 Thread qgourbeault
Hello to the community, I'm working on a project for a company, and I want a form editor in thin client. In the best case, I want a GUI for the creation of form. The generated code must be in GWT for be integrated by the software. If you have any leads, whether a commercial program or not, I'm

Re: how to do the following simple work in GWT

2012-01-23 Thread Arun Siva
You can use Splitlayout panel to divide your page and use Cell Tree widger to display the tree structure on the left hand side of the page and trigger an event for every click, that will refill the center part of your page with the required contents. Arun On Mon, Jan 23, 2012 at 4:25 PM,

issue with gwt RPC

2012-01-23 Thread fceransky
Hello, sorry to disturb you with that. But I have no clue how to fix the problem: It's the log from my tomcat when I try to use a AsyncCallback: Thanks by advance Fred Jan 23, 2012 1:47:04 PM org.apache.catalina.core.ApplicationContext log SEVERE: Exception while dispatching incoming RPC call

Re: Deleting the contents of a GWT DataGrid Widget

2012-01-23 Thread vaibhav jain
Hi, Can you please mail me some example of data grid having sorting ,paging and editable columns features,I am new to GWT and haven't found any example in java doc. Thanks in advance. Regards, Vaibhav On Jan 6, 2:08 pm, Thomas Broyer t.bro...@gmail.com wrote: dataProvider.getList().clear() ?

Re: deploy the tutorial to tomcat server

2012-01-23 Thread Eric Metcalf
Should already have one when you created the GWT project with the Eclipse plug-in. Should just be able to right-click Google GWT Compile and it will create everything in the war dir. On Jan 22, 9:39 am, tong123123 tong123...@gmail.com wrote: in the

Re: Making an RPC call from a CellTable ButtonCell in a view (MVP pattern)

2012-01-23 Thread Eric Metcalf
Sorry, I meant to say I am using CellTable. Is there is a reason you don't pass the EventBus to your view? I found it very simple... private static final ButtonCell deleteButtonCell = new ButtonCell(); private static final ColumnThing, String deleteColumn = new ColumnThing,

How to style a captionpanel?

2012-01-23 Thread Nano Elefant
All CaptionPanels lost there frame/border as well as there original label color after the app has been added to a site. Now I tried to add a custom style for .gwt-CaptionPanel to the projects css file, but it is silently ignored. So how can a CaptionPanel be styled in the projects css file? --

Re: problem with the GWT Designer Tutorial: GWT Login Manager

2012-01-23 Thread Eric Clayberg (Google)
It works just fine when I try it. The drop zones for the FlexTable are on its sides (and cell boundaries) once it has its first child. See the GWT Designer FlexTable docs... http://code.google.com/webtoolkit/tools/gwtdesigner/layoutmanagers/gwt/flextable.html -- You received this message

GWT + CellTable + Paging with Hibernate

2012-01-23 Thread Daniel Mauricio Patino León
Hello everyone. I dont understan how paging works, and i cant get a SimplePaging get work with my example. I have a CellTable whit my own AsyncDataProvider: public class PersonDataProvider extends AsyncDataProviderPersonProxy { private final PersonRequestFactory requestFactory;

[gwt-contrib] Improvement to HistoryImpl

2012-01-23 Thread Aladdin
In IE the History.addItem(...) is very slow, this problem is in the IE only. I tracked the code and I found that the nativeUpdate(historyToken); is were IE take a nape sometimes up to 2000ms if the app is huge. The problem is inside the body of newItem. public final void newItem(String

Re: [gwt-contrib] Improvement to HistoryImpl

2012-01-23 Thread John Tamplin
On Mon, Jan 23, 2012 at 5:00 PM, Aladdin alaamu...@gmail.com wrote: This is simply will pass the event to the app for processing, then it will later change it in the browser. What do you guys think ? That seems likely to break existing code that expects by the time the event is fired the

[gwt-contrib] Re: Avoid Java bottleneck by using explicit Charset for byte[]-String conversions (issue1588803)

2012-01-23 Thread rdayal
LGTM. http://gwt-code-reviews.appspot.com/1588803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Improvement to HistoryImpl

2012-01-23 Thread ALAA MURAD
Jone, I already did a test project and I replicated the class and modified it, in my test both history token and changed event received the correct token. I know if we can do this fix to ie only, that would have been great. But Jone this a real problem in ie as my empty test project it took