Re: Change DatePicker language

2012-03-22 Thread Nicanor Babula
Thank you very much, Thomas. Setting -deploy and -extra to directories outside the war solved the problem. Problem solved. On Wed, Mar 21, 2012 at 4:42 PM, Thomas Broyer t.bro...@gmail.com wrote: On Wednesday, March 21, 2012 2:02:27 PM UTC+1, nicanor.babula wrote: Hi everyone, How can I

GWT SimplePager LastButton issue

2012-03-22 Thread vaibhav bhalke
Hi, I am facing problem with lastButton of SimplePager. I have 3 pages in celltable, Page size=11 (1 empty record + 10 records(with value)), Total record=26. I used CustomerPager by extending SimplePager. In 1st attempt 1+10 records display in celltable : Next Last page button is enabled

ScrollPanel with a CellList Widget

2012-03-22 Thread Saik0
Hi @all, i have a confusing issue with the ScrollPanel. Im trying to add a CellList with n-Elements to a ScrollPanel. The ScrollPanel itself is add to a VerticalPanel. Now i add more Elements to the Celllist and redraw the view. Normally i except, that the ScrollPanel shows his Scrollbar if

Re: Defining a Jetty realm in hosted mode

2012-03-22 Thread TimD
Your jetty-web.xml is the same as mine, apart from missing the contextPath and war definitions. If I remove these I still get the same problem. On Wednesday, March 21, 2012 7:24:36 PM UTC, Paul Stockley wrote: Create a jetty-web.xml file under your war/WEB-INF folder Mine is defined as

Re: ScrollPanel with a CellList Widget

2012-03-22 Thread Andrea Boscolo
See the showcase sample http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList On Thursday, March 22, 2012 11:38:18 AM UTC+1, Saik0 wrote: Hi @all, i have a confusing issue with the ScrollPanel. Im trying to add a CellList with n-Elements to a ScrollPanel. The ScrollPanel itself

Access an SQLITE file on the server that isn't in the WAR directory?

2012-03-22 Thread Fille
Hi, I just found out that placing the database file (.sqlite) in the WAR directory isn't that good, since it can be accessed by anyone. So I guess that I should move it to /war/WEB-INF/classes or any other suggestions? Previously I did it this way, which worked:

Re: Chrome deferred binding issue

2012-03-22 Thread manstis
Should anybody encounter this type of problem check, check and check again. Eventually (after far too long) I check the fully qualified class names and these were wrong. Luckily I can laugh at myself :) On Tuesday, 20 March 2012 21:08:31 UTC, manstis wrote: Hello, I am having a

Re: How to share classes between two different modules with two different pages

2012-03-22 Thread Deepak Singh
It did not work. On Thu, Mar 22, 2012 at 3:29 AM, Matias Costa m.costac...@gmail.com wrote: I would create a base module from which A and B inherit. Or you can try in moduleB.gwt.xml source path=../moduleA/client / El miércoles 21 de marzo de 2012 16:16:46 UTC+1, Deepak Singh escribió:

GWT + Vector Drawing Tools

2012-03-22 Thread SigmaBlu
I have the following questions: 1) I was wondering if there were any examples out there that displayed vector objects models in a table/list type of format and also the vector images themselves? I know there is Raphael, but i dont see any examples that match my criteria. Raphael objects dont

Re: How to share classes between two different modules with two different pages

2012-03-22 Thread Matias Costa
And you have in moduleB.gwt.xml ? source path=shared / El jueves 22 de marzo de 2012 14:46:07 UTC+1, Deepak Singh escribió: It did not work. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

attempting to understand PlaceTokenizerP

2012-03-22 Thread Thad
I am trying to understand Places, PlaceTokenizer, and how and when to parse the token. I read about them, look at examples, watch there execution, and still I think I'm missing something. (The examples I follow seem not to fit me--they seem either trivial or too complex to follow.) I have

Re: GWT Chat Widget with Jetty

2012-03-22 Thread Joseph Lust
Use GWT on AppEngine with the XMPP. See their example codehttp://code.google.com/appengine/docs/java/xmpp/overview.html . Sincerely, Joseph -- 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: GWT + Vector Drawing Tools

2012-03-22 Thread Sebastian Gurin
Hi I'm the author of raphael4gwt/http://code.google.com/p/raphael4gwt/ (a project different than raphaelgwt). My response between lines On Thu, 22 Mar 2012 07:51:07 -0700 (PDT) SigmaBlu sigmabl...@gmail.com wrote: I have the following questions: 1) I was wondering if there were any examples

Re: GWT, Mozilla Audio Data API, and W3C Web Audio API

2012-03-22 Thread leathrum
OK, so I got impatient waiting for an answer and wrote my own. I have placed the results on github: https://github.com/leathrum/audio-api This includes the whole GWT wrapper, but the compatibility JS library is in particular the bit at:

Re: GWT, Mozilla Audio Data API, and W3C Web Audio API

2012-03-22 Thread Juan Pablo Gardella
Thanks!!! El 22 de marzo de 2012 16:17, leathrum leath...@jsu.edu escribió: OK, so I got impatient waiting for an answer and wrote my own. I have placed the results on github: https://github.com/leathrum/audio-api This includes the whole GWT wrapper, but the compatibility JS library is

Re: GWT + Vector Drawing Tools

2012-03-22 Thread Freddie Jefferson
Sebastian, Thank you for your response. In response to 1) and you not understanding displayed vector objects models in a table/list type of format and also the vector images themselves. For example you have a Raphael objects visually representing Movies. You now have these colored squares

Re: GWT Chat Widget with Jetty

2012-03-22 Thread Jamie
For use in Jetty, check out Ignite Realtime's smack. http://www.igniterealtime.org/projects/smack/index.jsp Jamie. On Mar 22, 2:23 pm, Joseph Lust lifeofl...@gmail.com wrote: Use GWT on AppEngine with the XMPP. See their example

Project Creator: GWTRPC Interfaces in 'client'?

2012-03-22 Thread Jamie
Maybe this is the wrong board for this... but here goes. When I create a new project using the aw3s0m GWT Eclipse plugin, it always creates the GWT RPC interfaces in the client package, instead of the shared package. So, that means I must compile the client package (or bits of it). It seems to me

Re: GWT nocache filter

2012-03-22 Thread Jamie
I use the same filter, with no problems. However, my web.xml is probably configured a little differently: I remember from where I got that filter, it just applied it to every request. Instead of that, I only apply the filter to URLs that end in nocache.js like so - (note the url-pattern)

How to format custom TreeItems with images?

2012-03-22 Thread dhoffer
I have a GWT Tree that contains custom TreeItems that consist of a leading image (ImageResource), then some text, and followed with another optional image. The later image is a URL not an ImageResource because the contents are dynamic at runtime. Currently I'm building some custom SafeHtml just

Using an image from another library as a background image in a UiBinder file

2012-03-22 Thread dazz
I have a UiBinder file *.ui.xml that uses some other library, and I want to use an image from that library as a background image. Is there anyway to do this? For example, something like ui:with field='global' type='com.mycorp.gwt.client.resources.Lib'/ ui:style field='local' .bgImg1 {

Problem to compile to javascript...

2012-03-22 Thread Blaze
Hi, I get this error while comiling to JS [ERROR] Errors in 'jar:file:/D:/Development/GoogleWebTolkit/gwt-2.4.0/ gwt-user.jar!/com/google/gwt/validation/client/constraints/ FutureValidatorForDate.java' [java] [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be

Re: Problem to compile to javascript...

2012-03-22 Thread Jim Douglas
Try this google search for the error message: http://www.google.com/search?q=The+import+javax.validation.ConstraintValidator+cannot+be+resolved The first result it returns is a thread in this group with suggestions for making it work. On Mar 22, 6:30 pm, Blaze baze...@gmail.com wrote: Hi, I

[gwt-contrib] Re: FF11 Devmode Plugin (issue1667803)

2012-03-22 Thread acleung
http://gwt-code-reviews.appspot.com/1667803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds support for aria-hidden to UIObject.setVisible(). (issue1671803)

2012-03-22 Thread jlabanca
http://gwt-code-reviews.appspot.com/1671803/diff/1/user/src/com/google/gwt/user/client/ui/UIObject.java File user/src/com/google/gwt/user/client/ui/UIObject.java (right): http://gwt-code-reviews.appspot.com/1671803/diff/1/user/src/com/google/gwt/user/client/ui/UIObject.java#newcode246

[gwt-contrib] Re: Adds support for aria-hidden to UIObject.setVisible(). (issue1671803)

2012-03-22 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1671803/diff/1/user/src/com/google/gwt/user/client/ui/UIObject.java File user/src/com/google/gwt/user/client/ui/UIObject.java (right): http://gwt-code-reviews.appspot.com/1671803/diff/1/user/src/com/google/gwt/user/client/ui/UIObject.java#newcode246