GWT MVP 2.1.1 code splitting

2011-01-06 Thread zixzigma
Is it possible to implement Code Splitting with GWT MVP 2.1.1 ? really appreciate if you can share some tips on how this can be achieved. Thank You -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to goog

new bee design widget with markup

2011-01-06 Thread fachhoch
I am new bee learning gwt. I have a simple widget public class HomeScreen extends Composite{ public HomeScreen() { VerticalPanel vp=new VerticalPanel(); Label lblWelcome=new Label(); lblWelcome.setText("Hello "+"Saibaba");

Re: Update ParentProxy with List using Editor

2011-01-06 Thread -sowdri-
Thanks Thomas! -- 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 unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For mo

Re: Gwt module sometime not loaded, Only after clicking refresh button it work ?

2011-01-06 Thread Sudhakar
I am also experiencing the same issue.I am using Chrome browser in Ubuntu 10.10 On Fri, 2011-01-07 at 12:06 +0530, suersh babu wrote: > Hi, > > I am using gwt 2.1, After uploading my application to production > server, some time I see my gwt module not loaded, only > After clicking refresh butt

Re: Dev plugin for firefox 3.7

2011-01-06 Thread morte...@gmail.com
I tried to build this as well.. although it did seem to build after following most of the instructions here and on other sites, it didn't work with Firefox 4.0b8 (osx). Would be nice to know some updates. On Nov 9 2010, 4:34 am, csillag wrote: > On okt. 26, 00:54, slowpoison wrote: > > > On Sep

Gwt module sometime not loaded, Only after clicking refresh button it work ?

2011-01-06 Thread suersh babu
Hi, I am using gwt 2.1, After uploading my application to production server, some time I see my gwt module not loaded, only After clicking refresh button it get loaded. Kindly can any one tell me what could be the reason, I am very interested in this. -- *Regards Suresh Babu G* -- You rec

Re: Not able to set BigDecimal value in a grid column using HTMLTable setText function in IE8

2011-01-06 Thread smriti sharma
I am using BigDecimal constructor to initialize the BigDecimal value. m_table.setText(row, col, text); //m_table here is of type HTMLTable setText for Hashtable is erroring for simple values for the "text" parameter e.g.- "60.00", "23.57" javascript error occurs only when I run the appli

Re: GWT MVP History/Place/Activity Noticable Delay during Place Transition

2011-01-06 Thread zixzigma
Thank you for clarification. when I tested in production mode (rather than development/hosted mode with plugin), it worked fine. I also tried the development mode, this time disabling logging all together, Firefox seemed to have been working ok, but Chrome was showing delays. in production mode

How do I override parameters in web.xml

2011-01-06 Thread Rob Tanner
I need to override URLs for servers (database, Active Directory, LDAP, etc) added as context parameters in web.xml. When I'm doing regular servlet development, I simply put the overrides in tomcat's server.xml and the application only talk to the development environment servers. And when I mov

Re: primitive arrays vs Collections (performance wise)

2011-01-06 Thread Thomas Broyer
Modulo ClassCastException and the like (e.g. instanceof checks), Java arrays are compiles straight into JavaScript arrays; while collections have an emulated "wrapper" class around a JavaScript array. However, due to how the compiler inlines methods, most accesses to a collection's item (i.e. by

Re: GWT 2.1 MVP Multiple activities clarification help

2011-01-06 Thread Thomas Broyer
Because of the CachingActivityMapper and FilteredActivityMapper (found in CachingHorizontalMasterActivityMapper), the MailListActivity isn't "restarted" between place changes between MailDetailPlace-s (and MailListPlace-s). As it doesn't listen to PlaceChangeEvent, its not even aware of the nav

Re: gwt cell table error

2011-01-06 Thread Thomas Broyer
It looks like you're trying to display a 'null' NodeInfo: http://code.google.com/p/google-web-toolkit/source/browse/tags/2.1.0/user/src/com/google/gwt/user/cellview/client/CellBrowser.java?r=9507#939 In other words, your TreeViewModel returns 'null' from getNodeInfo for the rootValue you're using

Re: GWT MVP History/Place/Activity Noticable Delay during Place Transition

2011-01-06 Thread Thomas Broyer
Do you experience any delay in the Showcase? http://gwt.google.com/samples/Showcase/Showcase.html I don't. Showcase uses place changes rather than Hyperlink though (and I think you should do it too when using Places, as it helps decoupling the history token from the Place it represents), that be

Re: Locale setting priority

2011-01-06 Thread Thomas Broyer
The URL: http://code.google.com/p/google-web-toolkit/source/browse/tags/2.1.1/user/src/com/google/gwt/i18n/I18N.gwt.xml?r=9507#32 -- 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...@goog

primitive arrays vs Collections (performance wise)

2011-01-06 Thread Rafael
Hello there! I've meaning to ask you the question implied in the subject of this post. Is there an advantage in favoring Arrays over Collections when working with code that will end up in the client (translated to HTML and JavaScript that is)? My gut tells me that i should stick to arrays in orde

Re: Launching dev mode does not overwrite nocache.js

2011-01-06 Thread Thomas Broyer
AFAICT, it's the expected behavior (not overwriting), because the nocache.js generated by a compilation contains the necessary bootstrap code to make it debuggable with DevMode (which is necessary to debug/develop apps without using the embedded Jetty server of the DevMode) -- You received thi

Re: GWT Cookies returning null

2011-01-06 Thread Thomas Broyer
On Thursday, January 6, 2011 2:23:04 PM UTC+1, Noor wrote: > > I am becoming almost mad with the GWT Cookies, > > in one of my application I set the cookie in an RPC success, but I am > trying to retrieve it in another place of my application, it returns > null. > > I know that when setting a

Re: Update ParentProxy with List using Editor

2011-01-06 Thread Thomas Broyer
You might have to response = context.edit(response) before modifying the academicYearList. Is the new AcademicYear sent to the server? Also, from the doc: RequestFactory automatically sends the whole object graph in a single request. In this case, the implementation of Person.persist() on the s

Re: Composite Primary Keys (Many-to-Many relationship)

2011-01-06 Thread Y2i
Sorry, I misunderstood the question. You are trying emulate @ManyToMany... On Jan 6, 3:13 pm, Y2i wrote: > I don't see @ManyToMany attribute in the sample code. > > On Jan 6, 8:53 am, Aldo Neto wrote: > > > > > > > > > Hi all, > > > I'm trying to create a Many-to-Many relationship and add a c

Re: Composite Primary Keys (Many-to-Many relationship)

2011-01-06 Thread Y2i
I don't see @ManyToMany attribute in the sample code. On Jan 6, 8:53 am, Aldo Neto wrote: > Hi all, > > I'm trying to create a Many-to-Many relationship and add a couple of fields > to it. I based my mapping on this > post:http://sieze.wordpress.com/2009/09/04/mapping-a-many-to-many-join-tab...

Re: GWT 2.1 MVP Multiple activities clarification help

2011-01-06 Thread karthik reddy
Hi Mauro Your example is turning out to be very helpful. I ran into one issue I thought I might communicate to you. When you click the "Mail activites" button, and then select the first entry of the mail list (i.e., viva...@seddiamlorem.ca) the details are populated in "Mail Details". Similary

Example Code on how to add a check box column to CellView

2011-01-06 Thread Néstor Boscán
Hi Anyone has some example code on how to add a check box column to CellView. Regards, Néstor Boscán -- 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 unsubscrib

static string internationalization without @DefaultStringValue annotations?

2011-01-06 Thread Magnus
Hi, I have the following files for static string internationalization of constants: Constants.java Constants_en.properties Constants_de.properties I would like to omit the @DefaultStringValue in Constants.java. The defaults should be the EN-strings. How can I do this? If I omit the annotations

BlobInfo using the BlobKey

2011-01-06 Thread Janko
Does anybody know how to fetch the BlobInfo by BlobKey? Thank you -- 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 unsubscribe from this group, send email to goo

gwt cell table error

2011-01-06 Thread Noor
I am getting an error on this where CellBrowser cellBrowser_1 = new CellBrowser(Model1,SelectedCategory.getAllAttributes()); I have tested SelectedCategory.getAllAttributes() and it is not null, also model1 has been declared stack trace: 00:42:31.294 [ERROR] [biddingsystem] Uncaught exceptio

Tree widget's zIndex

2011-01-06 Thread colin.zhao
Just find out that the tree widget has the same zIndex as PopupPanel by default. So if you show a popup in the same area of the tree, you need to set the zIndex of the popup to 2. Otherwise, the tree nodes will be still visible through the PopupPanel. I see this with GWT 2.1 Chrome and IE --

Re: Does SuggestBox.setOracle(SuggestOracle) have to be private?

2011-01-06 Thread Ben Imp
I use a delegate pattern to do this very thing. Its really the only way to keep presenter logic where it belongs without polluting your namespace with widgets. The SuggestBox is none the wiser. Just make sure your delegator handles the base case where its delegate oracle is null, of course, othe

Locale setting priority

2011-01-06 Thread nacho
Hi, i'm using locale with constants. If I print this when I render my jsp for the hosted page And the user adds to the url the param ?locale=en Wich one of the two locale has priority? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. T

GWT MVP History/Place/Activity Noticable Delay during Place Transition

2011-01-06 Thread zixzigma
Hello everyone, I am using GWT MVP, I have different DisplayRegions for Different Activities. when I navigate around my app, from the time the History Token changes to the time Activities start showing up in display regions, there is a noticable delay. this delay is more apparent in Chrome than i

Re: History, Is An Alternate Implementation Possible?

2011-01-06 Thread Y2i
I would also like to have similar functionality: back-forth button working within a tab, not across a tab. This would be possible to achieve if GWT supported for nested places and activities. In the first level, back-forth button would work across the tabs. Once a user clicks within a tab, URL wo

sliding panel

2011-01-06 Thread EMan
on this page: http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html there is a sliding panel that you can minimize/maximize vertically. but this panel is not in the showcase. Does anyone know how to create this using uiBinder? Thanks. -- You received this message because you are s

Re: Google API Lib GWT

2011-01-06 Thread sudhakar . fernando
Thanks a lot Eric Empower your Business with BlackBerry® and Mobile Solutions from Etisalat -Original Message- From: Eric Ayers Sender: google-web-toolkit@googlegroups.com Date: Thu, 6 Jan 2011 13:09:54 To: Reply-To: google-web-toolkit@googlegroups.com Subject: Re: Google API Lib GWT T

Launching dev mode does not overwrite nocache.js

2011-01-06 Thread John Huss
I use the same directory for running dev mode and for doing a regular gwt compile. If I compile first and then try to run dev mode, it won't connect to dev mode because it doesn't overwrite the compiled output with a new nocache.js file. Am I doing something wrong, or is this just how it is s

Re: Google API Lib GWT

2011-01-06 Thread Eric Ayers
Those instructions assume you are using eclipse. Follow the link in the Getting Started guide I posted above to the Google Plugin for Eclipse and make sure its installed. Adding the jar file is the same as any other Eclipse project (go to the 'Project' menu add add the .jar file to your classpath

Re: about gwt listbox

2011-01-06 Thread Thad
The code in this message worked for me in Firefox and IE, but not with Safari 5: http://groups.google.com/group/google-web-toolkit/msg/5c44460a11ad950b I haven't looked into the whys of that, but if anyone figures out a solution, I'd be interested. I had to settle for a kludge of multiple list b

uploading to amazon s3

2011-01-06 Thread t.dave
hi all, wondered if anyone has had any success doing reliable and robust uploads to amazon s3 directly from the browser? i need to upload mp3 files at 3-10ish MB a pop. i have it working using the GWT-S3 library (http://code.google.com/p/ gwt-s3/) which basically translates into doing glorified f

Re: History, Is An Alternate Implementation Possible?

2011-01-06 Thread Jeff Schwartz
BTW, the app is still in development and there's lots of good stuff still left to implement but I have a rather large number of members already who I think are mostly interested in (at this time so far) seeing how my implementation is progressing. Jeff On Thu, Jan 6, 2011 at 12:10 PM, Jeff Schwar

Re: History, Is An Alternate Implementation Possible?

2011-01-06 Thread Jeff Schwartz
I agree with Thomas and would add the behavior your are seeking to implement is counter intuitive to what people expect when using browser history. As such then I'd either try to adapt the application so that the browsers navigation mechanism maintains the user's expectations or forgo using history

Update ParentProxy with List using Editor

2011-01-06 Thread -sowdri-
Dear All, Given below is the source code, I'm not sure whether this is the right way of doing it. Anyways the object "AcademicYear" is not being persisted, in spite of that, I get a success on callback. School.java (Parent) http://pastebin.com/EYByVgBR AcademicYear.java (Child) http://pasteb

Re: Does SuggestBox.setOracle(SuggestOracle) have to be private?

2011-01-06 Thread Patrick Tucker
Thats a good idea, I will look into doing that instead. The SuggestBox isn't going to have any problems with the SuggestOracle being changed even though, if implemented this way, it doesn't know it is being changed? Thanks again, Pat On Jan 6, 11:46 am, Thomas Broyer wrote: > How about having a

Re: GWT Cookies returning null

2011-01-06 Thread Noor
No this is not the problem, i have tried setting an expiry date of 7 days -- 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 unsubscribe from this group, send email

Composite Primary Keys (Many-to-Many relationship)

2011-01-06 Thread Aldo Neto
Hi all, I'm trying to create a Many-to-Many relationship and add a couple of fields to it. I based my mapping on this post: http://sieze.wordpress.com/2009/09/04/mapping-a-many-to-many-join-table-with-extra-column-using-jpa/ (which was very clear and helpful). Summarizing the mapping on that blog

Re: DatePicker now starting with Monday, used to be Sunday

2011-01-06 Thread Dan
Thank you Thomas (and others). It is all working well now. On Jan 6, 11:43 am, Thomas Broyer wrote: > Add a third line: > -- 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...@googlegrou

Re: DatePicker now starting with Monday, used to be Sunday

2011-01-06 Thread Thomas Broyer
Add a third line: -- 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 unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. Fo

Re: History, Is An Alternate Implementation Possible?

2011-01-06 Thread Thomas Broyer
Well, PlaceHistoryHandler uses an Historian (DefaultHistorian by default, which delegates to the History class), so you can easily replace the implementation there. But really, I wonder how you'll make it work OK with the back/forward browser buttons, particularly when going back/forth not a sin

Re: Way to use a ServiceLocator to find a Locator in 2.1.1 RequestFactory?

2011-01-06 Thread Thomas Broyer
On Wednesday, January 5, 2011 11:05:10 PM UTC+1, Eric Andresen wrote: > > I'm using the 2.1.1 RequestFactory in a Spring environment. I would > like to use my Spring Service class to provide both my Entity Locator > and my RequestContext methods. > > I can define my object's requestContext as

Re: Setting HTML on TextCell GWT 2.1.1

2011-01-06 Thread Thomas Broyer
Maybe you could then pass a SafeHtmlRenderer to the constructor of ClickableTextCell/TextCell, that uses SafeHtmlUtils.fromTrustedString (instead of relying on the SimpleSafeHtmlRenderer that's used by default with the no-arg constructor, that uses SafeHtmlUtils.fromString) -- You received thi

Does SuggestBox.setOracle(SuggestOracle) have to be private?

2011-01-06 Thread Patrick Tucker
I have a form that depending upon a listbox value that the user selects needs different suggestions. Currently I have 1 SuggestOracle and I have to clear it and reload it, with values from the server, every time the user changes the ListBox. What I would like to do is store a SuggestOracle for eac

deploy GWT app with Tomcat istead GAE..

2011-01-06 Thread Sebe
Hello everyone I have a GWT application, created using the tutorial of Google Code .. but I would deploy it to Tomcat. Can someone tell me the basics to use Eclipse with Tomcat instead of Jetty / Google App Engine? At the moment I'm a bit confused and did not find anything on the Internet that can

Re: Dropping support for ie6?

2011-01-06 Thread Jeff Schwartz
-/+ 1 IE6 +1 IE9 On Dec 27, 2010 2:22 AM, "marius.andreiana" wrote: Hi, GWT 2.1.1 dropped support for firefox 1.0. What do you think about next GWT release dropping support for ie6? (while introducing support for ie9 would be great) -- You received this message because you are subscribed to t

Re: Implementing a ServiceLayerDecorator

2011-01-06 Thread David Chandler
Jan, It looks like the code you've implemented comes from the comments in this unit test class, which has access to both client and server code: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/requestfactory/server/testing/InProcessRequestTransport.java?spe

Re: DatePicker now starting with Monday, used to be Sunday

2011-01-06 Thread Dan
Adding those two lines to the gwt.xml file does the job. However, now my compiles make 10 permutations, rather than 5. Is there a way to get that back to 5 permutations? On Jan 5, 12:14 pm, John LaBanca wrote: > Are you using the default locale?  I'm pretty sure that the start of week > info co

Re: REST + Spring Security 3.0

2011-01-06 Thread julio
thanks Sebastian for the reply the basic authentication I think has worse performance than "login page" has it must authenticate every time (well, I could "forge" ad hoc filters chain but it always will hit the db) and u have not a real "logout". with ur snippet i will use the login page :) On J

Re: about gwt listbox

2011-01-06 Thread salk31
I don't think it supports that. This ticket http://code.google.com/p/google-web-toolkit/issues/detail?id=1167 seems to back that up. So guess only options are to choose a different widget, write your own or use one of the libs that builds on core GWT. On Jan 6, 6:13 am, vijay gohel wrote: > hi a

Re: Google API Lib GWT

2011-01-06 Thread sudhakar . fernando
Thanks Eric, But how to add the jars in Eclipse.any idea? Empower your Business with BlackBerry® and Mobile Solutions from Etisalat -Original Message- From: Eric Ayers Sender: google-web-toolkit@googlegroups.com Date: Thu, 6 Jan 2011 10:03:25 To: Reply-To: google-web-toolkit@googlegr

Re: Problem with java.util.Date

2011-01-06 Thread bond
Hi, maybe I've some more ideas about this problem. With the simple code above it works; but I've a bean with several field. For example BeanExample private long id; private Date date; private String text; This bean has getter and setter; when I get the value of date's field I print his class:

Re: Not able to set BigDecimal value in a grid column using HTMLTable setText function in IE8

2011-01-06 Thread Jeff Schwartz
**Use either BigDecimal's constructor to initialize its value or one of its valueOf methods to set its value. Jeff On Thu, Jan 6, 2011 at 4:58 AM, sims wrote: > I am receiving following js error when I am trying to set a Bigdecimal > value for a grid column using > HTMLTable setText function.

Re: GWT Cookies returning null

2011-01-06 Thread Ben Imp
It looks like you aren't setting the expiry date on the cookie. I believe by default those expire when the session dies. That might be your issue. -Ben On Jan 6, 7:23 am, Noor wrote: > I am becoming almost mad with the GWT Cookies, > > in one of my application I set the cookie in an RPC succes

Re: History, Is An Alternate Implementation Possible?

2011-01-06 Thread Ben Imp
Have you pondered simply not using the Places? I'm not sure if this is a requirement (or simply a strongly desired outcome) of your project, but if not, then you can simply roll your own MVP framework. In the case of my company, we started using GWT before the new place stuff came about, so we did

Re: Dropping support for ie6?

2011-01-06 Thread markM
Big Pharma still using ie6 too. Moving to ie7 but not there yet. On Jan 4, 3:37 pm, El Mentecato Mayor wrote: > -1 for dropping ie6 (same here; big clients still use ie6-- > unfortunately) > +1 for adding ie9 > > On Dec 30 2010, 10:43 am, Peter Ondruska > wrote: > > > > > I am very aware of tha

Re: Google API Lib GWT

2011-01-06 Thread Eric Ayers
Here is a getting started guide for the Maps API http://code.google.com/p/gwt-google-apis/wiki/MapsGettingStarted On Tue, Jan 4, 2011 at 11:55 PM, Sudhakar wrote: > Guy, > > Please tell me how to use the Google API Lib (Visualiza

Google API Lib GWT

2011-01-06 Thread Sudhakar
Guy, Please tell me how to use the Google API Lib (Visualization,Gears etc)in Eclipse 3.6 and Eclipse 3.5. I am using 3.6 in Windows and 3.5 in Ubuntu 10.10. How to include the jars in CLASSPATH. Regards, Sudhakar -- You received this message because you are subscribed to the Google Groups

handle unchecked exceptions

2011-01-06 Thread klemensr
Hi folks, I am using GWT 2.0 and JBoss. I have the following situation: In my servlet filter is occouring an exception (StaleObjectStateException) but the doFilter Method from the Servlet.Filter superclass has the following construct: public void doFilter(ServletRequest request, ServletResponse r

Way to use a ServiceLocator to find a Locator in 2.1.1 RequestFactory?

2011-01-06 Thread Eric Andresen
I'm using the 2.1.1 RequestFactory in a Spring environment. I would like to use my Spring Service class to provide both my Entity Locator and my RequestContext methods. I can define my object's requestContext as: @Service(value=MyObjectService.class,locator=SpringServiceLocator.class) public int

EntityProxy with complex data types

2011-01-06 Thread Jan Swaelens
Our application uses a concept of 'complex data types' to represent values/properties of an object. Simply put, we have a 'MyInteger' variant for 'Integer' values, a 'MyDouble' variant for 'Double' values (none of them actually extends these types, they are rather wrappers). Our data objec

No API environment is registered for this thread" when launching GWT devmode

2011-01-06 Thread frank
Hello I have a GWT App with a GAE backend. It works fine, if I compile the GWT Frontend an run it against the local GAE envirinment. If I try to launch the GWT devmode, I get: "No API environment is registered for this thread" I already asked i the GAE Group but noone coul pelp me. Does here som

GWT RequestFactoy UserInformation

2011-01-06 Thread Łukasz Kidziński
Hi, I'm new in GWT. I'm working on my first app, and have some problems with login user. I could try to write some login system by myself but I hope that there is something out of box. I've found UserInformation class but I don't know how to use it. There is also tutorial for GWT 1.7 which works fi

RE: please Help me GWT Listbox

2011-01-06 Thread nbansal...@gmail.com
Group 1 -Original Message- From: vijay gohel Sent: 06/01/2011 12:04:25 pm Subject: please Help me GWT Listbox i want aout put like Group1 Item1-1 Item1-2 Item1-3 Item1-4 Group2 Item2-1 Item2-2 Item2-3 Item2-4 etc for that in HTML there is op

InterfaceGenerator and @Import

2011-01-06 Thread Tommy K
I've got BlueprintGwtCss.css: ... /* The last column in a row needs this class. */ .last { margin-right: 0; } ... , which I generate the interface using InterfaceGenerator: // DO NOT EDIT // Automatically generated by com.google.gwt.resources.css.InterfaceGenerator package my.pkg.client.ui

Not able to set BigDecimal value in a grid column using HTMLTable setText function in IE8

2011-01-06 Thread sims
I am receiving following js error when I am trying to set a Bigdecimal value for a grid column using HTMLTable setText function. This is happening only in IE8 . Works fine in Firefox. User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .N

Implementing a ServiceLayerDecorator

2011-01-06 Thread Jan Swaelens
I am experimenting with the RequestFactory and came to a point where I want to create my own ServiceLayerDecorator. I have read trough the available documentation and found that I need to hook my custom service layer decorator up by calling this method with an instance of my decorator: 'ServiceLay

Seek help from GOOGLE-WEB-TOOLKIT project team

2011-01-06 Thread rongxin
It's my honor to know the GOOGLE-WEB-TOOLKIT project team. I am a student in Hong Kong university of science and technology, and my name is Wu Rongxin. I would like to seek help from you about GOOGLE-WEB- TOOLKIT application defects. Recently, we are doing a research about the java applicat

Re: Smart GWT 2.4 Released

2011-01-06 Thread Ezequiel Palumbo
Yes, really good library. I'm using it in a project that just started. Thanks! On 5 ene, 10:40, gcstang wrote: > Excellent, Thank you for the update! > > On Jan 4, 8:22 am, Sanjiv Jivan wrote:> Hi, > > Smart GWT 2.4 has been released. > > > Release Announcement > > :http://www.jroller.com/sjiva

Drawing Tools on GWT Application

2011-01-06 Thread Jay
Hey Folks , I am presently developing an Business application , I need to implement a custom drawing tools for users , where they can drag and drop images , change connections , etc ( something like designing a DFD ) . I have done this previously using Microsoft Visio . Is ther any tool to implem

Re: please Help me GWT Listbox

2011-01-06 Thread jaybose
Vijay, if you can't figure this out using Y2i's suggestion, consider using a Tree rather than a ListBox. http://gwt.google.com/samples/Showcase/Showcase.html#!CwTree On Jan 6, 2:18 am, Y2i wrote: > Not sure if you can do this with ListBox, but you can try constructing > this through DOM manipul

Re: GWT 2.1 compiler option : -noserver

2011-01-06 Thread SVR
Hi Agi, When use the -noserver from eclipse, I am getting the following error on the GWT development mode window: 00:00:49.531 [TRACE] Finding entry point classes 00:00:49.531 [ERROR] Unable to find type 'com.xyz.dashboard.prototype.gwt.widget.TxnTopLevelWidget' 00:00:49.531 [ERROR] Hint: Check th

Re: REST + Spring Security 3.0

2011-01-06 Thread Sebastian Hoß
Well you could use basic authentication by setting username and password inside the header for every request you make. If you want to have a login page you can either redirect to the spring security page (which should redirect you right back) or you can create your own login page/dialog. The releva

REST + Spring Security 3.0

2011-01-06 Thread julio
Hi, I need to use Spring Security 3 in my application which is composed by Spring 3 for the server side and GWT 2.1 for the client side. Client side and server side are totally ""decoupled"", I mean they don't belong to the same project in the eclipse workspace (server side is managed by maven an

Re: Problem with @sprite

2011-01-06 Thread Jeff Schwartz
Resolved by adding the following to my .ui.xml template: Apparently the image declaration is required because the .ui.xml file references the .css file in which the @sprite is defined but you would never have know that from the ambiguous error message I was getting; it was only through trial and

GWT Cookies returning null

2011-01-06 Thread Noor
I am becoming almost mad with the GWT Cookies, in one of my application I set the cookie in an RPC success, but I am trying to retrieve it in another place of my application, it returns null. I know that when setting a variable in an rpc sucess,if we try to access it elsewhere it result null, so

History, Is An Alternate Implementation Possible?

2011-01-06 Thread cmarsh...@avenue100.com
We have been experimenting with GWT and with the MVP design pattern but are having trouble with the history mechanism in our proposed UI. Looking through the many posts there are other people who have encountered problems similar to what we have but there don't seem to be conclusive. Our proposed

Re: International SimplePager

2011-01-06 Thread Fernando
http://code.google.com/webtoolkit/doc/1.6/DevGuideI18nAndA11y.html On Jan 6, 7:59 am, Micha Roon wrote: > How can the text for the pager be changed so that it displays in the > application's locale? > > A my application is in French and German, I need the text to be "1 à > 10 de 14" and "1 bis 10

Re: Setting HTML on TextCell GWT 2.1.1

2011-01-06 Thread bond
Thanks very much Thomas. I forget to say that I need that the cell is clickable. So I extended ClickableTextCell but the HTML is not rendered. Instead with SafeHtmlCell it is rendered but the cell is not clickable :-) Thanks for your suggestions! Regards Daniele On 5 Gen, 18:49, Thomas Broyer

Re: GWT Simple Pager Help

2011-01-06 Thread saklig
Hi Noor, Heres an example of a Celltable (using a DataProvider): public class TestTable implements EntryPoint { private GreetingServiceAsync gService; private CellTable table; /** * This is the entry point method. */ public void onModuleLoa

Re: Remove gwt.codesvr=127.0.0.1:9997 from http://127.0.0.1:8888/MyApp.html?gwt.codesvr=127.0.0.1:9997

2011-01-06 Thread Jaroslav Z?ruba
Anyways, there's the request you can star to move the parameter from URL to a cookie, so clicking a link does not break your debugging session. http://code.google.com/p/google-web-toolkit/issues/detail?id=4367 -- You received this message because you are subscribed to the Google Groups "Google

International SimplePager

2011-01-06 Thread Micha Roon
How can the text for the pager be changed so that it displays in the application's locale? A my application is in French and German, I need the text to be "1 à 10 de 14" and "1 bis 10 von 14" instead of "1 to 10 of 14" Thank you for your help -- You received this message because you are subscri

GWT ResizeComposite widget resizing problem in IE 7

2011-01-06 Thread Lakshitha Ranasinghe
Hi All, I am developing a GWT application that consists a ResizeComposite as the main container which is wrapped in a TabLayoutPanel. This composite widget contains two child widgets. Left widget is a GWT tree and it contains hyperlinks. The right widget is a simple panel that contains image tile

Re: Remove gwt.codesvr=127.0.0.1:9997 from http://127.0.0.1:8888/MyApp.html?gwt.codesvr=127.0.0.1:9997

2011-01-06 Thread Abdullah Shaikh
When you run your app in development, gwt.codesvr is there for you to be able to debug the app. If you compile and deploy the app gwt.codesvr is not required. - Abdullah On Thu, Jan 6, 2011 at 12:19 PM, Noor wrote: > I am tired of trying to remove gwt.codesvr=127.0.0.1:9997 this from my > url, I

Re: please Help me GWT Listbox

2011-01-06 Thread Y2i
Not sure if you can do this with ListBox, but you can try constructing this through DOM manipulation using SelectElement, OptGroupElement and OptionElement On Jan 5, 10:34 pm, vijay gohel wrote: > i want aout put like > > Group1 >      Item1-1 >      Item1-2 >      Item1-3 >      Item1-4 > Group2