يريد/تريد خليل بولو الدردشة معك

2010-05-07 Thread خليل بولو
--- هناك رغبة من خليل بولو في البقاء على اتصال بشكل أفضل باستخدام أبرع منتجات Google الجديدة. فإذا كان لديك Gmail أو برنامج Google Talk من قبل، فانتقل إلى الرابط: http://mail.google.com/mail/b-cb010344a9-2c2bfba9c9-BAFLFiZxkW3j__

IE8 doesn't recognize ClickEvent handler on Label ( I think )

2010-05-07 Thread Tristan
The following doesn't work in IE8. Do I have to do something with ()? Or am I missing a nuance with ClickEvent? By "doesn't work" I mean that the method onMyLabel() in the presenter does not get called. @UiField Label myLabel; @UiHandler("myLabel") public void onMyLabel(ClickEvent event) {

Re: Adding cookie question

2010-05-07 Thread Sripathi Krishnan
Both are identical, just different ways of doing it ... ..BUT, you almost always set the session cookie on the server. The session cookie has a random, impossible to guess identifier. This identifier must only be set on the server side, otherwise anybody can spoof sessions. If you are just settin

Re: Hide/Show Table Row with UIBinder

2010-05-07 Thread Craigo
Some browsers don't like: myTableRow.getStyle().setDisplay(Style.Display.BLOCK); This seems to work much better: myTableRow.getStyle().setProperty("display", ""); Strange there isn't a constant value in Style.Display for blank. O'well. On May 7, 12:23 pm, Craigo wrote: > Couldn't see any doco

Strange behaviour of development mode? After reload pages is empty

2010-05-07 Thread crojay78
Hi, I have a simple mvp style gwt app, after creating my first view I experienced a strange behaviour. After starting the development mode I could see my widgets at the page in the firefox, but as soon as I make a reload in the browser the widgets are gone and the page is empty. Only when I restar

Re: GWT execution flow

2010-05-07 Thread Chris Conroy
On Thu, May 6, 2010 at 11:05 PM, Sripathi Krishnan wrote: >> Technically, in the very first request, the server already knows user >> browsers' type, is that feasible to: >>   combine 1), 2) and 3) together or >>   combine 1) and 2) together or >>   some other consideration > > You are right, this

Re: Error parsing XML: The reference to entity "documentId" must end with the ';' delimiter.

2010-05-07 Thread Thomas Broyer
On May 6, 10:43 pm, James wrote: > I am using UiBinder. I have an Anchor in the XML file and when I > assign a URL to the href attribute that contains the string > "documentId" I get the "Error parsing XML" error (something like > ). > Compiling with debug output reveals that it is a SAXParseExc

Re: Linker

2010-05-07 Thread Thomas Broyer
On May 7, 6:42 pm, Stefan Bachert wrote: > Hi, > > GWT supports to define own linkers. > I did not found something on that. > > Does someone know some link to docus? http://code.google.com/p/google-web-toolkit/wiki/LinkerDesign > Could someone explain in short what for an own linker might by u

Re: bikeshed project

2010-05-07 Thread Diego Lovison
thanks ;) On 5 maio, 10:58, Thomas Broyer wrote: > On May 5, 3:42 pm, Diego Lovison wrote: > > > on trunk (svn) have one folder calledbikeshed... > > > its one project example? > > As the name implies [1], it's where new features are being developped > "in the open": >  - Enterprise widgets (com

Re: turn serialization more fast ;)

2010-05-07 Thread Diego Lovison
I posted wrong... I will write again.. in the class com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader have a private method private Map getSetters(Class instanceClass) { } in this method.. have one condition that my field can or not serializer if (SerializabilityUtil.is

turn serialization more fast ;)

2010-05-07 Thread Diego Lovison
in the class com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader have a private method called -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To uns

Re: problem with using EMF model in GWT

2010-05-07 Thread kidsos
By now, I have already noticed this. Hope that's working. However, I have still problems to install the beta version. Maybe I should give a try when the final will be released. So far, thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group

Re: How many are actually fixing GWT bugs?

2010-05-07 Thread mmoossen
but i agree with you... there are too many issues open. why? may be there are not relevant enough! at least until now i have not found any stopper for my projects... HTH Michael On May 7, 9:29 pm, mmoossen wrote: > dear jbdhl! > > but that is the idea behind open source. > that you invest in fix

Re: How many are actually fixing GWT bugs?

2010-05-07 Thread mmoossen
dear jbdhl! but that is the idea behind open source. that you invest in fixing the one or two bugs or features that are important for you, and somebody else does the same for 2 more and so on... which is *MUCH* cheaper than the license costs such a tool would have if it would not be open source.

Adding cookie question

2010-05-07 Thread Ho Jimmy
Hi I am confusing on adding cookie to the client after authentication. 1> Add from server, transmit to client by response getThreadLocalResponse.addCookie(New Cookie()) 2> Add on client after receiving the RPC callback for authentication success from server Cookies.setCookie() What is t

Linker

2010-05-07 Thread Stefan Bachert
Hi, GWT supports to define own linkers. I did not found something on that. Does someone know some link to docus? Could someone explain in short what for an own linker might by useful? Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed to the Google Group

Re: SmartGWT SimpleCalendar widget help

2010-05-07 Thread R Naveenshankar
Solution :: Found the solution: CalendarEvent calevent=event.getEvent(); eventname=calevent.getName(); Window.alert("eventname ::"+eventname); eventdescription=calevent.getDescription(); Window.alert("eventdesc ::"+eventdescription); Date startdate=calevent.getStartDate(); startdayofw

Re: character encoding issues

2010-05-07 Thread undertow
I was able to solve the problem i believe. The real problem was the fact that i couldn't use unsupported JRE functions in my transfer obeject, so i had to pull the encoding/decoding process out of that object and stick it in a utility function. From there i keep the string from the browser all th

GEP include Maven test scoped dependencies in the classpath in DevMode

2010-05-07 Thread Simon
Hello ! I made a project in Eclipse to demonstrate this issue when using GEP and M2 Eclipse Plugin. The project is structured like a standard Maven web project, with sources in src/main/java and web files in src/main/webapp. I configured it with this pom.xml : http://maven.apache.org/POM/4.0.

Re: Keeping track of traffic volume generated by a GWT application

2010-05-07 Thread Tristan
Sounds like you need to add filters to your server code. On May 7, 4:23 am, Antonio Leonforte wrote: > Hi all, > I have multiple GWT applications running on Tomcat, and I need to > monitor the total volume of traffic (inbound+outbound) generated by > each application, so that each application can

Re: Navigating to new pages

2010-05-07 Thread Tristan
What you're doing.. (I didn't compile the code).. but it seems like it would work. The only thing is, your users have to log in every single time they visit your page. There's no "remember me" type thing. One way to do it would be to make sure that you store some type of cookie that you attempt to

Re: What is the largest GWT program anyone is running?

2010-05-07 Thread Gal Dolber
I think 500kb (on each splitted part) is the limit for a decent experience. 2010/5/7 Sripathi Krishnan > >1. Adwords is not a monolithic GWT compile; it is made up of multiple >GWT modules. >2. Google Wave seems a single GWT module, but is sluggish. Maybe its >just me. >3. Or

Re: What is the largest GWT program anyone is running?

2010-05-07 Thread Sripathi Krishnan
1. Adwords is not a monolithic GWT compile; it is made up of multiple GWT modules. 2. Google Wave seems a single GWT module, but is sluggish. Maybe its just me. 3. Orkut is the latest kid on block, and seems to be a monolithic compile. >From the known list of google apps, Orkut s

Re: MenuBar with Icons

2010-05-07 Thread Stefan Bachert
Hi, I am here offhands. What you can do is to create somewhere a fragment which contains image and label, get the Html and put it as HTML to your menu. Hope this short sketch helps you Stefan Bachert http://gwtworld.de On 7 Mai, 11:46, StrongSteve wrote: > Hello Everybody, > > Can anyone be s

Spring MVC with GWT RPC problem

2010-05-07 Thread kirti
Hi, I integrated my GWT application with spring mvc following : http://code.google.com/p/google-web-toolkit-incubator/wiki/IntegratingWithSpring But after integration this.getThreadLocalRequest() method invocation in my serviceImpl class returns null. Please help !! -- You received this message

Re: Issue Internationalizing ClientBundles and message bundles

2010-05-07 Thread DK
Thanks for your reply Michael. Message bundles are working just fine (If I edit the Url to have locale=x_Y). It seems to be picking up appropriate message bundles on the fly. The issue is when I change my browser locale and try to hit the page. There is no change in the messages. A much serious iss

Re: What is the largest GWT program anyone is running?

2010-05-07 Thread Supercobra Thatbytes
Adwords has been redone using GWT. Google Wave is built with GWT. Adwords is a big application and loads fast. Daniel On May 4, 4:19 pm, Paul Stockley wrote: > Even though we are going to use code splitting aggressively, I am > wondering at what point things just break due to the sheer amount o

Re: Getting RichTextArea to resize

2010-05-07 Thread Alan Chaney
Hi Manolo Manuel Carrasco Moñino wrote: Setting the width to 100% should work Yes, it did. Embarrassingly obvious really. Thanks. Alan -Manolo On Thu, May 6, 2010 at 11:33 PM, Alan Chaney wrote: Hi I'm a complete newbie to GWT. I'm using GWT 2.0.1 I've managed to create a DockLa

Re: What is the largest GWT program anyone is running?

2010-05-07 Thread gcstang
One of mine is about 6MB, my entire war is 30+ On May 4, 4:19 pm, Paul Stockley wrote: > Even though we are going to use code splitting aggressively, I am > wondering at what point things just break due to the sheer amount of > javascript that is downloaded over time. The application we are > por

Navigating to new pages

2010-05-07 Thread Abhay Singh
Hi All, I am trying to build an web based application, where i am giving login page. Once its successful then giving access to next page, and subsquent pages, but i am not able to understand how we can do this. I wanted to show a tabedpanel in next page. Here is the code i am using to display logi

filterData() broken?

2010-05-07 Thread tdk
Folks'es, I have a strange problem with filterData(). Following is my set up: + I have a client only datasource + which I show in a tree grid + each cell/attribute is an object of my own class + I have cell formatters for each column which show the appr. stuff (text, images, links, etc) Everythin

Unable to instrument com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

2010-05-07 Thread efsiken
Hello, I'm trying to implement RPC in my application. I have ConnectionService and ConnectionServiceAsync interfaces on the client side, and a ConnectionServiceImpl on the server. The ConnectionServiceImpl uses methodes of a class that access the database through hibernate. The web.xml is as foll

Re: How many are actually fixing GWT bugs?

2010-05-07 Thread jbdhl
> Maybe you could speed things up by working on the bugs by providing > fixes Oh, why does such comments always follow when someone questions the optimality of certain properties of open-source projects? It drives me nuts. :-/ If I had the resources I would happily work on my own products *and* fi

MenuBar with Icons

2010-05-07 Thread StrongSteve
Hello Everybody, Can anyone be so kind and point out some documentation for creating MenuBars with Icons. I already have the ResourceBundle (MenuBar.MenuBarImages) and I create the menubar using the follwing constructor: new MenuBar(Resource resource). Unfortunately no icons are displayed. Furth

Re: problem with using EMF model in GWT

2010-05-07 Thread olivier nouguier
FYI: http://wiki.eclipse.org/EMF/New_and_Noteworthy/Helios#Support_for_Google_Web_Toolkit_.28GWT.29 On Thu, May 6, 2010 at 7:24 PM, kidsos wrote: > It doesn't matter. When I set in the module > file I still get more "No source code is available for type ..." > errors than before. I've found out

Keeping track of traffic volume generated by a GWT application

2010-05-07 Thread Antonio Leonforte
Hi all, I have multiple GWT applications running on Tomcat, and I need to monitor the total volume of traffic (inbound+outbound) generated by each application, so that each application can start rejecting requests when the total volume exeeds a given threshold. Maybe I can configure and query tomc

Re: MenuBar

2010-05-07 Thread Olivier
Hi Stefan, I don't think it is possible to do it with css as I need the right border of the popup to be align on the right of the menu item. It has nothing to do with RTL, it is just about design ;) I finally wrote a small widget with only what I need. Thanks for the answer Olivier On 6 May 2

Re: How many are actually fixing GWT bugs?

2010-05-07 Thread Peter Ondruska
Maybe you could speed things up by working on the bugs by providing fixes so that the team only review and you just use your patched stuff :-). On May 7, 8:49 am, Manuel Carrasco Moñino wrote: > Hi all, > > As far as I know, lately the gwt team has been overworked preparing > the Google I/O. > Al

gwt.xml file extensive documentation and dtd

2010-05-07 Thread francescoNemesi
Hi there, I could not find an extensive and complete document that details and explains all the available elements and attributes of a gwt.xml file. Could you please help/point to such a document? Thanks for your help, Regards Francesco -- You received this message because you are subscribed t

Re: new GWT MVP article (part 2)

2010-05-07 Thread Manuel Carrasco Moñino
Sorry Mike, but I don't understand what you mean. Could you point me to the concrete lines of code which are not clear, or send code to use the libraries in a better way? Thanks -Manolo On Wed, May 5, 2010 at 4:11 PM, Mike wrote: > Manolo, > > I may be mistaken, but I wasn't able to "replicate