Ideas to get Current Active Element in DOM?

2011-05-16 Thread -sowdri-
Dear All, I would like to get the current element that has focus in the DOM. But couldn't find a way. Any help is appreciated!!! Thanks in advance, -sowdri- -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send

Re: Still Getting Compilation Warnings after removing all styling

2011-05-16 Thread Owen Ilagan
Turns out this was a problem caused by subversion. Another developer using Eclipse, probably using an older version of GWT or Appengine committed a .classpath and com.google.gwt.eclipse.core.prefs file into the repository that was brought down to my workstation and caused the compilation problem. P

GWT Project Structure

2011-05-16 Thread Niraj Salot
Right now in our project, we have below mentioned structure. Our project is mainly using GWT & Spring framework. 1 com.customername.projectname.client.module name 2 com.customername.projectname.client.rpc.module name 3 com.customername.projectname.shared.validator.module name 4 com.customername

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-05-16 Thread Arc
hehe you need import some .jar validation-api-1.0.CR3 hibernate-validator-4.1.0.Beta1 : ) -- 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

DynaTable, "Exception while dispatching incoming RPC call "

2011-05-16 Thread Anders Branderud
Hello! Today I started to use GWT. I tried to run the example DynaTable, but it doesn't work. I imported the files of that directory into a new project. When I run DynaTable I get this error: http://itlosningar.appspot.com/' When I run it in Eclipse I get the same error and this is printed out:

How to show a message while waiting on a RPC service request (not RequestFactory request)

2011-05-16 Thread Skip
I'm looking for an approach on how to show a "Loading" message/image while waiting for the client to finish an RPC service request that's taking a few moments to complete. I'm not looking for an approach on startup. I've got the gist of that more or less. This question is for how to do it once t

Re: gwt-dev.jar not found by GWT Designer

2011-05-16 Thread Eric Clayberg
GWT Designer supports standard Eclipse projects (with standard classpaths) and Maven-style projects. Maven projects are the only non-standard project types that we currently support. The suggested work around would be to copy gwt-dev.jar into the same directory as gwt-user.jar so that it can be f

Re: Problem in slider bar

2011-05-16 Thread Juan Pablo Gardella
You use singletons views? 2011/5/16 VIKKY > Hi Everyone, > > I am using a slider in my application, Slider is attached with > decorated tab panel. > So when the application loads first time , it set the value for > slider , but when i open the panel where actually slider present, > slider will

gwt-dev.jar not found by GWT Designer

2011-05-16 Thread Magno Machado
I'm getting this message from GWT Designer whenever I try to open the editor: GWT Designer was unable to find *gwt-dev.jar* relative to *gwt-user.jar*. Please check that GWT is installed correctly and that gwt-dev.jar is in the same directory as gwt-user.jar or in the correct Maven directory if us

Re: Issue in method anonymous class in GWT

2011-05-16 Thread Juan Pablo Gardella
In gwt app you only have 1 thread. In swing you queue this "actions" in EDT thread. How do you manage this? 2011/5/16 ankit > i am making a GWT framework similar to Swing framework. in GWT, i have > one method in which i am making a anonymous class in method. but > problem is when this method ex

Re: RPC call no working after integrating gwt in jsp

2011-05-16 Thread Juan Pablo Gardella
Check the path of the javascript file in the html generated by jsp 2011/5/15 Brijesh > Hi, > > I have integrated a GWT page in my web project, in a JSP page. > Everythign is fine except RPC calls. > RPC which works fine in GWT project, when executing project, but after > integrating with JSP it

Re: SimpleAppCacheLinker missing?

2011-05-16 Thread Juan Pablo Gardella
Past the stacktrace 2011/5/15 dudi > Hey, > > please help a newb :) > > I'm trying to follow the MobileWebApp example: > [http://code.google.com/p/google-web-toolkit/source/browse/#svn%2Ftrunk > %2Fsamples%2Fmobilewebapp] > from i/o 2011 > [http://www.youtube.com/user/GoogleDevelopers#p/u/10/N1a

Re: Building gwt to use bean validation errors

2011-05-16 Thread Juan Pablo Gardella
See *http://tinyurl.com/3o29xfh* 2011/5/16 Javier > I'm trying to evaluate bean validation for my project. For that > purpose I checked out gwt and tools trunk and build gwt from source. > The problem is that when using the builded gwt I receive plenty or > errors. > > I would like to know if so

Re: Unsupported GWT version: 2.3.0 ?

2011-05-16 Thread Juan Pablo Gardella
You are use old gwt-maven-plugin. See this thread * http://tinyurl.com/3o29xfh* Juan 2011/5/15 Vasil Zorev - online attendee > I have the following Maven dependency in my pom.xml: > > >com.google.gwt >gwt-user >2.3.0 >jar > > > and when I execute a .launch conf

Scrolling to bottom of CellList

2011-05-16 Thread kellizer
Hi, Thought this would be a 2 second fix but alas no; As the title Suggests; I would like to scroll to the bottom of the scrollpane in CellList progamatically- is this possible. Tried getRowElement for the last cell and setting focus but with no joy.. Am i Missing something obvious and being s

Re: Building gwt to use bean validation errors

2011-05-16 Thread Javier
Thanks. I need to include the validation-api-1.0.0.GA-sources.jar. There are still other errors but now my app launches. On 17 mayo, 00:40, Jeff Larsen wrote: > you'll notice in the path > > trunk\build\dist\gwt-0.0.0.zip\gwt-0.0.0\ > > there exist 2 jar files: validation-api-1.0.0*.jar > > Add

Re: Building gwt to use bean validation errors

2011-05-16 Thread Jeff Larsen
you'll notice in the path trunk\build\dist\gwt-0.0.0.zip\gwt-0.0.0\ there exist 2 jar files: validation-api-1.0.0*.jar Add those to your classpath, and that should solve the problems. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Building gwt to use bean validation errors

2011-05-16 Thread Javier
I'm trying to evaluate bean validation for my project. For that purpose I checked out gwt and tools trunk and build gwt from source. The problem is that when using the builded gwt I receive plenty or errors. I would like to know if someone has managed to use bean validation in a project or whether

Re: TabLayoutPanel - Show tabs based on roles

2011-05-16 Thread Jeff Larsen
UiBinder eventually just ends up writing the javacode, so feel free to use straight java when it makes sense. You could definitely employ this strategy here, but there is a 3rd option, if you're rolling with MVP, it would be pretty easy to have each presenter check to see if it has rights, and i

TabLayoutPanel - Show tabs based on roles

2011-05-16 Thread HelperMethod
I'm developing a GWT-Application where the navigation is mainly a TabLayoutPane, where each Tab represents a different functionality. What I need is to only show tabs the user is allowed to see (each user has a role like user or admin). The problem is I don't know how to achieve this, especially w

Re: RequestFactory access from JRE or Android

2011-05-16 Thread craftycoder
Thanks for that bit of background on it. The important thing to take away from this experience is this, if you get an error message " Stub! " you may have linked in an incompatible library. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: RequestFactory access from JRE or Android

2011-05-16 Thread Jeff Larsen
Android is different. It gets compiled to Davalick (sorry that is totally spelled wrong) bytecode instead of standard bytecode. I believe this is for performance and lawyer reasons. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To pos

Re: RequestFactory access from JRE or Android

2011-05-16 Thread craftycoder
I solved this problem. I was using the Android.jar for a bunch of classes like org.json, but they are not actually JRE compatible. I thought the whole point of a class file was that they were the same on all hardware and the JVM was what changed, but this is not true with Android.jar I was using t

Re: gwt 2.3 linkedlist SerializationException

2011-05-16 Thread Peter Warren
I think it was indeed a classpath issue. I found an eclipse warning stating that the jar in web-inf/lib was different from the jar in the current gwt library. I synch'd the jars and the problem seems to be fixed. Thanks for your help. -- You received this message because you are subscribed to

Re: Competitor for world's most useless JavaDoc "comment"

2011-05-16 Thread John A. Tamplin
On Monday, May 16, 2011 1:22:43 PM UTC-4, Greg Dougherty wrote: > > It's too bad that there a 2 valid comments, and 34 worthless ones. > > Might I suggest that the GWT "Coding Standards" would do well to focus > on requiring people to write readable and understandable code (which > means having

Re: Competitor for world's most useless JavaDoc "comment"

2011-05-16 Thread John A. Tamplin
On Monday, May 16, 2011 1:42:45 PM UTC-4, Christian Goudreau wrote: > > Well, you may be right about some missing javadoc features, but do you have > to flame about it knowing that they work hard and give us this incredible > tool freely ? I'm maybe to sensitive lol > > As for format, define your

Re: GPE 3.6, breaks again for UIBinder files

2011-05-16 Thread John Gentilin
The beta version works for the GWT Designer / Project class path problem.. While not a bug/problem, the WindowBuilder Editor still seems to be ignoring the Preferences / WindowBuilder / GWT / Installation Directory setting I found this while trying to diagnose the other problem, no matter what I

Problem in slider bar

2011-05-16 Thread VIKKY
Hi Everyone, I am using a slider in my application, Slider is attached with decorated tab panel. So when the application loads first time , it set the value for slider , but when i open the panel where actually slider present, slider will not be set to actual value. it set to default value, Can

Style Sheet Overrides

2011-05-16 Thread Maitri
We are using GWt 2.3. Our app project in Eclipse is named VeloxClient, and the VeloxClient.css is created for us automatically by GWT. We want to override some of the styles in the default css that is provided, so we added them to our VeloxClient.css file with slightly different names and in code

SWT Browser requires a compatible xulrunner version installed

2011-05-16 Thread Tuatini GODARD
Hello, I'm under ubuntu 11.04 and I'm trying to run GWT on it via eclipse but when i go to the code design I get this: GWT Designer uses the SWT Browser widget to render the GWT UI. SWT Browser requires a compatible xulrunner version installed: it should be 1.9.1.x or 1.9.2.x version and meet the c

SimpleAppCacheLinker missing?

2011-05-16 Thread dudi
Hey, please help a newb :) I'm trying to follow the MobileWebApp example: [http://code.google.com/p/google-web-toolkit/source/browse/#svn%2Ftrunk %2Fsamples%2Fmobilewebapp] from i/o 2011 [http://www.youtube.com/user/GoogleDevelopers#p/u/10/N1aCo5LvMf8] I have so many problems, prob because I did

redrawing table after sorting the column

2011-05-16 Thread Rafal Janik
Hi All, I quite new in GWT and I'm trying to do really simple Pager with CellTab wit sortable column. What should I do to make the table be redraw after each sort event occurrence? part of the main class : CellTable table = new MyCellTableCreator(result).getCellTable();

Good reference book/tutorial on GWT with CSS?

2011-05-16 Thread Hojoon
Hello, I'm new to GWT, or web app developing for that matter, and I'm trying to learn how to implement CSS formatting with the use of GWT. I'm clueless on where to start... Does anyone know of a good source of where I can get a crash course on CSS formatting with GWT? Thanks -- You received thi

Cannot get simplest RequestFactory in 2.3

2011-05-16 Thread stevee
Hi, I am trying to implement my first RequestFactory sample app and haing the following issue: proto.shared.AnimalProxyAutoBean_com_google_web_bindery_requestfactory_shared_impl_EntityProxyCategory_com_google_web_bindery_requestfactory_shared_impl_ValueProxyCategory_com_google_web_bindery_reques

Re: RequestFactory not working when upgrade from 2.2 to 2.3

2011-05-16 Thread dd
hi, experiencing the same problem... On 14 Mai, 01:26, Joshua Kappon wrote: > Hi All > > I'm trying to upgrade my project to use GWT 2.3 > I changed all the imports and xml project and web.xml to point to the > new packages locations. > > but RequestFactory calls still don't work. > > when runnin

How Can I upgrade My Project To use RequestFactory

2011-05-16 Thread Qadez
Hi All I was create project using GWT2.0 And now I successfully upgrade My Project To The New GWT2.3 I'm Using DTO In the RPC But Now I want To use The RequestFactory But i can't So plz tell me how i can upgrade it or any one can suggest another RPC To Use It thanks Qadez -- You rec

FormPanel submit() problem...

2011-05-16 Thread The Unknown Developer
I've followed all the examples I can find to create a form to allow me to upload a file to the server. I know uploadForm.submit() is being called as I've traced it through in the debugger, but my servlet reference in the setAction() call is not being hit and I don't get any 404 errors. I'm sure I'

RPC call no working after integrating gwt in jsp

2011-05-16 Thread Brijesh
Hi, I have integrated a GWT page in my web project, in a JSP page. Everythign is fine except RPC calls. RPC which works fine in GWT project, when executing project, but after integrating with JSP it neither shows data from server nor any error. Is there any special configuration i have to do to ma

Unsupported GWT version: 2.3.0 ?

2011-05-16 Thread Vasil Zorev - online attendee
I have the following Maven dependency in my pom.xml: com.google.gwt gwt-user 2.3.0 jar and when I execute a .launch configuration I get the following error: [ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:1.3- SNAPSHOT:compile (default) on proj

RequestFactory to Android Boolean problem

2011-05-16 Thread craftycoder
*What steps will reproduce the problem?* 1. Create RequestFactory Service 2. Create an Android client 3. Create a method that returns Boolean *What is the expected output? What do you see instead?* When called on the android side you would expect to see "true". Instead I get a ClassCastException.

TabLayoutPanel inside TabLayoutPanel (IE problem?)

2011-05-16 Thread Luca Morettoni
Hello list, I have a GWT 2.2 application that the main UI is based on a big TabLayoutPanel that use all the page size (100%), on a particular tab of that I have a FlexTable with 3 rows: - one FlexTable (width=100%, no heigth); - one TabLayoutPanel (width=100%, no heigth);; - one FlexTable (width=

Added Child Widget does not update Display

2011-05-16 Thread Stefan
Hi everybody, please excuse my ignorance, but I just cannot get it to work. I have following a composite widget. The parent widget has a vertical panel, which should act as a container for new children widget. I have a method in the parent widget, which should create a new child widget and add it t

Re: Persistence Engine

2011-05-16 Thread Jmscavaleiro
I am really curiouse about your project. How long it will take to the website get running? :) On May 13, 7:15 am, "J.Ganesan" wrote: > I invite the group members to try out this persistence engine for GWT > fromwww.DataStoreGwt.com. > > The developer can persist the object graph from client-side

RichTextArea background color IE bug

2011-05-16 Thread yahna
Hello, I really need some help. I'm facing an IE bug with a richtextarea widget. On an richtextarea.getElement.getStyle.setBackgroundColor( the color), IE stills displaying a white background instead of "the color". Everything works fine in Chrome, FF Opera. Why IE is so rude with me? Is there an i

Issue in method anonymous class in GWT

2011-05-16 Thread ankit
i am making a GWT framework similar to Swing framework. in GWT, i have one method in which i am making a anonymous class in method. but problem is when this method executes, execution control does not go to anonymous class instead it skips over it. after this method executes completely, control tra

Using a Comm Service of a Parent Module from Child

2011-05-16 Thread Android MD
Hi All, My question is that when I attempt to use a service defined and implemented in the Parent Module by a Child module, the web.xml has to be edited for the RPC plumbing to correctly point the request for the service's servlet implemented. For example, I have isolated my service into ModuleA.

RequestFactory access from JRE or Android

2011-05-16 Thread craftycoder
I am trying to get to a RequestFactory on a GWT server from the JRE to test and Android to deliver and I'm getting an error I cannot figure out. Can anyone point me in the right direction or perhaps point me to an example that works with GWT 2.3? Exception in thread "main" java.lang.RuntimeExcepti

Re: Better XSRF protection in 2.3?

2011-05-16 Thread meder
On May 4, 6:39 pm, cbauer wrote: > In 2.1 some custom HTTP headers were added to GWT RPC with the goal of > preventingXSRFattacks from vectors such as XHR, simple HTML forms, > etc. However, many GWT applications are probably still vulnerable > toXSRFattacks executed with older Flash advertisem

Re: GWT build speed (Google I/O 2011: Fireside Chat with the GWT and Cloud Tooling Team)

2011-05-16 Thread Jeff Larsen
yea, that is the only solution I've heard of for mobile development. Some help is on the way: http://www.google.com/events/io/2011/sessions/chrome-dev-tools-reloaded.html The part that will be of most interest to you will be toward the end. There will eventually be remote debugging of a chrome

GWT build speed (Google I/O 2011: Fireside Chat with the GWT and Cloud Tooling Team)

2011-05-16 Thread Jim Douglas
re: the question @ 37:30 (do developers use DevMode or do they compile to JavaScript for ongoing testing?): http://www.youtube.com/watch?v=n3hBzIOUSms For desktop browsers, we use DevMode to initially implement a given feature, then retest in JavaScript in the unlikely case of a difference. But

Re: Single Sign On / GWT 2.3

2011-05-16 Thread David Chandler (Google)
Correct. The SSO feature is used to sign in for App Engine deployments in Eclipse as well as the new "Import Google Hosted Project" capability. On May 16, 7:51 am, Brian Reilly wrote: > I think this is purely a Google Plugin for Eclipse feature that you'll > benefit from if you use Eclipse to int

Re: Abort submit action on the form

2011-05-16 Thread Matej Jelovcan
Hm, perhaps this will do the trick... just code sequence. I will call submitEvent when I will click the abort button... public class asd extends FormPanel { private SubmitEvent submitEvent = null; public asd() { this.addSubmitHandler(new SubmitHandler() { @

Re: Competitor for world's most useless JavaDoc "comment"

2011-05-16 Thread Jeff Larsen
It may not be completely obvious what is going on here, but that format changes based on the locale, so it isn't exactly easy or maintainable to actually specify what each format is doing for each locale. While it probably makes sense to you to put the format into US standards, it would totall

Re: Competitor for world's most useless JavaDoc "comment"

2011-05-16 Thread Christian Goudreau
Well, you may be right about some missing javadoc features, but do you have to flame about it knowing that they work hard and give us this incredible tool freely ? I'm maybe to sensitive lol As for format, define your own, it's easy: @Provides @Named("BlogPostFormat") DateTimeFormat getDateTim

Competitor for world's most useless JavaDoc "comment"

2011-05-16 Thread Greg Dougherty
I was looking through com.google.gwt.i18n.client : Enum DateTimeFormat.PredefinedFormat, because I wanted to figure out why my dates were coming out in such a useless format (sorry, but while - mm-dd is a lovely format if you want dates that can be textually sorted by a computer, it's a crappy

Re: RequestFactory edit List of Proxies

2011-05-16 Thread gwtomni gwtomni
Thank you for your answer, At the beginning I thought that any object instantiated by the RequestFactory in the server side will still be managed by the RequestFactory it self, and any re-instantiation will be avoided server side. But now I discovered that we have to implement the static met

Re: the new refactored RequestFactory VS old requestFactory

2011-05-16 Thread gwtomni gwtomni
Thanks for your answer. -- 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.co

Re: RequestFactory not working when upgrade from 2.2 to 2.3

2011-05-16 Thread Thomas Broyer
No, with Maven you have to add the javax.validation:validation-api and org.json:json dependencies. gwt-servlet-deps.jar is for people not using Maven: they just have to add this JAR to their classpath (i.e. distribute it in their WAR) without worrying about "third party dependencies". com.google

Re: Abort submit action on the form

2011-05-16 Thread Matej Jelovcan
Well, the form is accessible, if that is what you meant. I am using form.submit() and then async RPC calls to get progress status for the progress bar. It works fine, but in some cases, I just want to abort the upload. What should that button call, to abort the client upload? Thanks! On Mon, May

Re: RequestFactory not working when upgrade from 2.2 to 2.3

2011-05-16 Thread Hilco Wijbenga
On 16 May 2011 03:26, icamts wrote: > Add gwt-servlet-deps.jar to your project. It comes with gwt sdk > distribution. I don't see this JAR on Maven Central. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai

Re: Current state of crawlability in GWT

2011-05-16 Thread Christian Goudreau
We introduced a service to do that in Gwt-Platformthat you can use for that. If you're not using Gwt-Platform, you will still be able to use it, but that will require a little bit more work. We will continue to work on that feature and fee

Current state of crawlability in GWT

2011-05-16 Thread Isaac Truett
What's the current state of crawlability in GWT? Is it all still done by hand? I recall there was some work on a CrawlableHyperlink that was abandoned, and I thought there was a Servlet written at some point that could automatically serve up HmlUnit snapshots, but I can't find that now. Are there p

Re: Single Sign On / GWT 2.3

2011-05-16 Thread Brian Reilly
I think this is purely a Google Plugin for Eclipse feature that you'll benefit from if you use Eclipse to interface with AppEngine, Google Project Hosting, etc. As such, it has nothing to do with implementing SSO in your application (GWT or otherwise). I haven't tried using it, but if you install t

Re: Single Sign On / GWT 2.3

2011-05-16 Thread Juan Pablo Gardella
+1 2011/5/16 cri > I'm a little unclear on 2.3's new single sign on functionality > (referenced at > http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html). > I'm not seeing any clear documentation on how to use it. Can someone > provide me with a pointer? Also, is this new functionalit

Single Sign On / GWT 2.3

2011-05-16 Thread cri
I'm a little unclear on 2.3's new single sign on functionality (referenced at http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html). I'm not seeing any clear documentation on how to use it. Can someone provide me with a pointer? Also, is this new functionality at all useful with single si

Re: String.format(String, String[]) undefined

2011-05-16 Thread ghost23
Ah, ok, too bad. 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-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroup

Re: GPE 2.2 download

2011-05-16 Thread Eric Clayberg
John - For your specific issue, give the latest GWT Designer build a try and let us know if it helps... http://code.google.com/webtoolkit/tools/download-gwtdesigner-beta. On May 13, 5:32 pm, John Gentilin wrote: > Those are the problem URL's... Last week I upgraded to 2.3.0 or > release 2.3.0.r3

Re: single service implementation class for multiple modules

2011-05-16 Thread Juan Pablo Gardella
Make the servlet in a jar and put as dependency in the the wars where you need. 2011/5/6 kaynix > Can we have a single service implementation class(class that extends > RemoteServiceServlet) for multiple modules? > If yes how? > > -- > You received this message because you are subscribed to the

Re: Styling in GWT

2011-05-16 Thread Jānis Ābele
Both ar equivalent. ui:style element is backedup by Client Bundle . interface MyResources extends CssResource { String myIdent(); } So it could be represented in UIBinder as .myIdent { text-align: righ

Re: Abort submit action on the form

2011-05-16 Thread Juan Pablo Gardella
If you upload async, put another button to cancel, you will code this. I don't know if there are another way 2011/5/16 Matej Jelovcan > Hi guys. > > Simple and short question: can I cancel submit() action that I fired > on the form? I'm uploading some files and well, I'd like to abort > upload.

Re: GPE 3.6, breaks again for UIBinder files

2011-05-16 Thread Eric Clayberg
Give the latest GWT Designer build a try and let us know if it helps... http://code.google.com/webtoolkit/tools/download-gwtdesigner-beta.html On May 14, 6:23 am, John Gentilin wrote: > I found a workaround... I went in my Workspace directory and created > a > soft link to my project directory..

Re: Google Analytics Cookies in GWT?

2011-05-16 Thread sandesh
Bumping it up.. ANY thoughts? On May 6, 3:43 pm, sandesh wrote: > I am kind of a n00b here. I have developed a Basic GWT app, and when I > go over the cookies my application sets, I see __utma, __utmz etc. > These (If I am not wrong) are Google Analytics cookies. Why are they a > part of my app

Re: String.format(String, String[]) undefined

2011-05-16 Thread Juan Pablo Gardella
It doesn't support yet 2011/5/16 ghost23 > hi, > > i have an issue with formatting an array and hope for your help. My > code looks like this: > > String[] example = new String[] {"one", "two", "three", "four"}); > String.format("%s, ", example); > > At runtime, it says > > ERROR: The method for

String.format(String, String[]) undefined

2011-05-16 Thread ghost23
hi, i have an issue with formatting an array and hope for your help. My code looks like this: String[] example = new String[] {"one", "two", "three", "four"}); String.format("%s, ", example); At runtime, it says ERROR: The method format(String, String[]) is undefined for the type String Is Str

Re: CellTable: Displaying Action/Button cells only onHover

2011-05-16 Thread Jambi
I couldn´t figure out how to apply the class to my cells. Could you please help help me out? Some code example would be nice ;)... On 16 Mai, 12:27, Jambi wrote: > Thanks Thomas ;) > > You saved my life ... again :D > > On 16 Mai, 12:22, Thomas Broyer wrote: > > > Yes, using CSS; something like:

Abort submit action on the form

2011-05-16 Thread Matej Jelovcan
Hi guys. Simple and short question: can I cancel submit() action that I fired on the form? I'm uploading some files and well, I'd like to abort upload. I have abort implemented on server side, so that server does not save anything, but the client keeps submitting. Thanks. -- You received this m

Re: GWT deployment

2011-05-16 Thread Carlos
in eclipse you can export a gwt application to .war i need another way to develope my .war On 16 mai, 15:08, Juan Pablo Gardella wrote: > In WAS you always deploy an EAR. Your war must put inside in an EAR. For > create a WAR you can use Eclipse or maven (more complicated if you are > starting wi

Re: GWT deployment

2011-05-16 Thread Carlos
sorry i wanted to say you can't export a gwt application to .war On 16 mai, 15:11, Carlos wrote: > in eclipse you can export a gwt application to .war > i need another way to develope my .war > > On 16 mai, 15:08, Juan Pablo Gardella > wrote: > > > > > In WAS you always deploy an EAR. Your war m

Re: GWT deployment

2011-05-16 Thread Juan Pablo Gardella
In WAS you always deploy an EAR. Your war must put inside in an EAR. For create a WAR you can use Eclipse or maven (more complicated if you are starting with gwt) 2011/5/16 Carlos > hey, > > I want to deploy my application to a webSphere server, i surfed the > web for some answers but it was rea

GWT deployment

2011-05-16 Thread Carlos
hey, I want to deploy my application to a webSphere server, i surfed the web for some answers but it was really confusing so can u help me with your experience on how to creat a .war file from gwt application. thanks in advance. -- You received this message because you are subscribed to the Goo

Re: googlebot ajax crawl for GWT app

2011-05-16 Thread 3xM
i do generate URLs with #! once user starts changing views or calling some searches, but initially according to ajaxcrawling doc it should be enough to add to your home page: " Some of your pages may not have hash fragments. For example, you might want your home page to be www.example.com, rather

Re: gwt memory leak ?

2011-05-16 Thread khiem nguyen
the patch just seem to slow down the leak but dont eliminate it, i make vm-dumps & observe the numbers of ProxyAutoBean, ShimHandler increases (thou slowlier than before the patch) & cannot be GCed. testing long enough will eat up the memory anyway. it's strange that no one get this problem yet ,

Re: googlebot ajax crawl for GWT app

2011-05-16 Thread Magno Machado
I never developed an gwt app that is meant to be crawlable, so I never did that before... But shoudl't you do the 'fetch as googlebot' on a url like http://www.example.com/#!foo ? On your server side I think it's all ok, because you do get the html snapshot when you use the _escaped_fragment_. But

Re: RequestFactory books

2011-05-16 Thread Geraldo Lopes
Have you seen ? http://www.google.com/events/io/2011/sessions/highly-productive-gwt-rapid-development-with-app-engine-objectify-requestfactory-and-gwt-platform.html Unfortunately Gwt in action second Edition (http://www.manning.com/ tacy/) doesn't appear to have a chapter devoted to RequestFactor

Re: googlebot ajax crawl for GWT app

2011-05-16 Thread 3xM
googlebot fetch for url without escape fragment returns only html loading gwt. yes, he does it automatically when crawling the web, but thought maybe when i call fetching from webmaster tools i need to supply full url. so it means that for some reason googlebot does not make request with escape fra

Re: running GWT compiler low priority

2011-05-16 Thread Juan Pablo Gardella
Do you use windows? 2011/5/16 Erel Segal > The GWT compiler takes a lot of time, and slows the computer > meanwhile. > > Is it possible to tell it to automatically run in a lower priority > (something like "renice" in Linux), so that I can do other things on > my computer while it runs? > > -- >

Re: googlebot ajax crawl for GWT app

2011-05-16 Thread Raphael André Bauer
On Mon, May 16, 2011 at 11:08 AM, 3xM wrote: > i have no problem converting Ajax GWT pages to html (i am using > HtmlUnit). as i said, when i try Fetch as Googlebot from webmaster > tools for > http://www.example.com/?_escaped_fragment_= > i can see that googlebot fetched the html snapshot. the e

running GWT compiler low priority

2011-05-16 Thread Erel Segal
The GWT compiler takes a lot of time, and slows the computer meanwhile. Is it possible to tell it to automatically run in a lower priority (something like "renice" in Linux), so that I can do other things on my computer while it runs? -- You received this message because you are subscribed to th

Styling in GWT

2011-05-16 Thread Nitish Upreti
I am new to web development and GWT. I have a simple question related to GWT styling. What is the difference in styling " ** " and * http://groups.google.com/group/google-web-toolkit?hl=en.

Still Getting Compilation Warnings after removing all styling

2011-05-16 Thread Owen Ilagan
Hi, I'm suddenly getting these compilation warnings from a GWT project on Eclipse. I remember there were users not long ago, who encountered these before because their style names had a character that caused the compiler to get confused. But just recently I started getting these for a UI Binder te

Re: CellTable: Displaying Action/Button cells only onHover

2011-05-16 Thread Jambi
Thanks Thomas ;) You saved my life ... again :D On 16 Mai, 12:22, Thomas Broyer wrote: > Yes, using CSS; something like: > > .gwt-CellTable-cellTableCell .hiddenAction { >   visibility: hidden; > > } > > .gwt-CellTable-cellTableHoveredRowCell .hiddenAction { >   visibility: visible; > > } > > ap

Re: RequestFactory not working when upgrade from 2.2 to 2.3

2011-05-16 Thread icamts
Add gwt-servlet-deps.jar to your project. It comes with gwt sdk distribution. Cheers, Luca On 15 Mag, 14:42, Joshua Kappon wrote: > Thank! > > I added the json-20090211.jar to my build path and it solved the > problem! > > On May 14, 10:43 pm, Hilco Wijbenga wrote: > > > > > > > > > On 13 May 2

Re: CellTable: Displaying Action/Button cells only onHover

2011-05-16 Thread Thomas Broyer
Yes, using CSS; something like: .gwt-CellTable-cellTableCell .hiddenAction { visibility: hidden; } .gwt-CellTable-cellTableHoveredRowCell .hiddenAction { visibility: visible; } applying the hiddenAction class to your cell (I mean, your cell generates some HTML that uses this CSS class). Th

Tree Example with UiBinder

2011-05-16 Thread Nitish Upreti
I am having a tough time with building a tree structure declaratively using uibinder. The showcase also has no declarative code. Is there anywhere I can look out for resources and examples for building Tree with UiBinder? -- You received this message because you are subscribed to the Google Group

CellTable: Displaying Action/Button cells only onHover

2011-05-16 Thread Jambi
Hey guys, is it somehow possible to hide specific cells in the cell table? I only want to display them when the user hovers over a row in the table and the buttons should only be visibly for this row. Maybe some css tricks? best regards, Michael -- You received this message because you are sub

Re: googlebot ajax crawl for GWT app

2011-05-16 Thread 3xM
i have no problem converting Ajax GWT pages to html (i am using HtmlUnit). as i said, when i try Fetch as Googlebot from webmaster tools for http://www.example.com/?_escaped_fragment_= i can see that googlebot fetched the html snapshot. its just that i dont know is google requesting url with ? _es

Refactored 2.3 RequestFactory creates frozen proxies

2011-05-16 Thread Mikael Couzic
I ran into a problem with the new com.google.web.bindery.requestfactory in dev mode, when going back to the deprecated package everything works fine. I got this code : CarRequestFactory requestFactory = GWT.create(CarRequestFactory.class); requestFactory.initialize(eventBus); CarRequestFactory.Car

Does TextBox has one handler like Swing's documentListener?

2011-05-16 Thread July
hi all: Does GWT TextBox has something like Swing's document listener? In my case, when i am typing something in TextBox or copy something to it, it can get the content immediately and display it in other panel. i tried valuechangehandler or changehandler or keypresshandler, nothing fulfill m

Re: How to disable WEB-INF/deploy/ directory

2011-05-16 Thread Stefan Ollinger
The symbolMaps can be used to deobfuscate stack traces, for example if you want to use logging on the server side for client exceptions. Then the manifest files look like mappings from obfuscated service paths to service interfaces. I dont think you can disable any of them. If you really have t

Re: googlebot ajax crawl for GWT app

2011-05-16 Thread Raphael André Bauer
On Mon, May 16, 2011 at 12:00 AM, 3xM wrote: > hi, > > i have GWT app so i wanted to make it crawlable using directions from > http://code.google.com/web/ajaxcrawling/docs/getting-started.html > > i added to my page and other stuff > necessary according to ajaxcrawling document. > so when i go to

  1   2   >