Compiled JS more readable?

2010-04-07 Thread nacho
Is there anyway to make that GWT when compiles the JS code uses more human readable vars? For example when i have an error like this: this.a.s.g is null The only thing that i know is that i have a null over there but i don't any idea where to search :( -- You received this message because you

Re: RPC Obfuscation

2010-04-23 Thread nacho
I would like to know too if there anyway to ofuscate the methods On 23 abr, 15:04, Tercio terciofi...@gmail.com wrote: Well, I don't have an answer for your question, but why don't you use SSL? I can't trust my data going and coming without been encrypted. This way you don't need to worry

Re: Session Timeout Popup

2010-04-27 Thread nacho
How do redirect to another page in GWT? On 27 abr, 06:29, Sripathi Krishnan sripathikrish...@gmail.com wrote: Just have a custom class the extends AsyncCallback, like below, and mandate that everybody uses it instead of directly using AsyncCallback. public abstract class MyAsyncCallbackT

Re: Suggestion needed in design a shops website

2010-04-28 Thread nacho
I think that you must consider about seo positioning. If you use events, you must have in mind that the search engines bots only reads html. On 28 abr, 06:36, sridevi macherla sridevimache...@gmail.com wrote: Hi Sanjeev, Thanks thats exactly i am looking for the same, but i am looking the

Can i run hosted mode with Tomcat?

2010-05-20 Thread nacho
Hi, i need to run hosted mode so then i can debbug the client classes. I need to use tomcat because in my project i'm using jax.ws in the server classes and when i try to use hosted mode with jetty its exploits. Can i do that? Can i debbug client classes using tomcat instead jetty? Can someone

inherints .... for every library in my project?

2010-05-20 Thread nacho
Hi. It is necesary to put in Application.gwt.xml for every one library that i use one line like the following? inherits name=com.company.product.Product/ The thing is that in my console when i run the Ant task to compile i get numerous errors. And i'm trying to use Firefox plugin, but i cant

Re: GWT and Python

2010-05-26 Thread nacho
It's not gwt but you can try this http://ajaxian.com/archives/pyjamas-gwt-for-python On 22 mayo, 23:06, kunal ghosh kunal...@gmail.com wrote: Hi all, I was following the Google IO keynotes this year and having done so last year also noticed a few things with respect to App engine. Google

Can i get url parameters values in my gwt java code?

2010-06-09 Thread nacho
Hi, i want to put a parameter in the url and get it value from my gwt java code. For example, if i go in the browser to http://localhost:8080/MyApplication/Hostedpage.html?debug=true I want then in my java code do something with that value: String debugParameterValue = ?;

Re: Invoke SOAP Web Service from GWT on the server side.

2010-06-19 Thread nacho
I had troubles trying to use JAX-WS. But i realized that the troubles were on Jetty server, so i deployed the application in a Tomcat and it works great. Maybe it could help you. On 19 jun, 09:52, Dean S. Jones deansjo...@gmail.com wrote: I gave up on alot of Java on the server side for 'glue

Re: Session Management on server side through timer task

2010-06-24 Thread nacho
What about the following idea. The user request some action that needs to go to the server, in your rpc in the server side you send an Exception, for example TimedOutException and in your client code check in the onFailure method which is the exception, if the Exception is TimedOutException you

MVP Question.

2010-07-11 Thread nacho
Hi, i'm trying to make a view like the following that i paste. But i need to add click handlers to the links in the presenter. How could i do. I was looking the method getClickedCell in the mvp presentation but the problem is that my links are inside a FlowPanel that is inside a Vertical that is

Re: MVP Question.

2010-07-11 Thread nacho
ON THE VIEW INTERFACE :) 2010/7/11 nacho vela.igna...@gmail.com Hi, i'm trying to make a view like the following that i paste. But i need to add click handlers to the links in the presenter. How could i do. I was looking the method getClickedCell in the mvp presentation but the problem

How can i debug an GWT application in IE 7?

2010-07-13 Thread nacho
I'm getting an error in the generated js in my app running on ie7. And all i get in the ie console is Argument not valid an the line of the script that is causing the trouble: 44756 :P -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Mouse Over Image

2010-07-21 Thread nacho
Hi, i want to do the following, i want to display a label when the user passes the mouse over the image and i want to hide the label when the user takes out the mouse from the image. Just like a toolkit. What i did is the following, what am i missing? final Label lblRecyclerBin = new

Re: Mouse Over Image

2010-07-21 Thread nacho
an image for a blind person. On Jul 21, 2:16 pm, nacho vela.igna...@gmail.com wrote: Hi, i want to do the following, i want to display a label when the user passes the mouse over the image and i want to hide the label when the user takes out the mouse from the image. Just like a toolkit

Re: Draggable widget

2010-07-23 Thread nacho
Are you using Fred Sauer's gwt-dnd? If you are using it, this could help you. Fist at all follow Fred's example: http://code.google.com/p/gwt-dnd/wiki/GettingStarted Now you must make a change to your widgets, first your widget class must implement HasDragHandle. And second i guess that you

Re: GWT app looks ugly in IE6

2010-07-23 Thread nacho
Is so easy and free to install FF in any computer, that i don't know why developers must keep loosing time with IE6. When someone's want's a web development we must say Ok, but i will not do it IE6 compliant, Google doesn't losses any more time in that, why should we? I don't loose time in that.

How to create a GWT Library?

2010-07-23 Thread nacho
Hi, i'm looking some info about how to create and package my own gwt's lib. Does anyone know where can i find some tuto? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: How to create a GWT Library?

2010-07-27 Thread nacho
fairly easy to do.just google for a gwt module howto On Jul 23, 6:14 pm, nacho vela.igna...@gmail.com wrote: Hi, i'm looking some info about how to create and package my own gwt's lib. Does anyone know where can i find some tuto? -- You received this message because you

Re: Css Calendar using GWT

2010-07-27 Thread nacho
Jejej i was thinking in do myself something like that. it's nice On 26 jul, 09:30, Peter Simun si...@seges.sk wrote: Seems not working for me in FF, I'm not able to click on the date in the calendar. Is there any official project site? Peter On 25. Júl, 23:39 h., dodo dard

Re: Tree Padding

2010-07-27 Thread nacho
Something like that happened to me. What i did was the following. For example: div id=container !-- here goes my tree -- /div In the css: #container div { padding: 20px; margin: 20px; } Play with padding and margin and it could help you. On 25 jul, 21:11, David E. dve1...@gmail.com wrote:

Re: Strange Mail from group 'islam'

2010-07-27 Thread nacho
i receive a mail of that On 26 jul, 16:48, Breno Gomes breno.gomesfernan...@gmail.com wrote: yes 2010/7/26 Nabeel Ali Memon nabeelalime...@gmail.com No, i've never been hit by spam due to signing up with gwt mailing list :) Nabeel On Mon, Jul 26, 2010 at 9:39 PM, jsaar

GWT Rocks!

2010-07-27 Thread nacho
Hi, i just must say that i like GWT more and more every second!!! In argentinian 'GWT es una masa!!!' In spanish 'GWT está de puta madre!!!' Nothing more, i had to share my felling :D -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: How to show server log file on the client?

2010-07-28 Thread nacho
and if you have a timer that runs every 5 seconds for example and you call a rpc and get the last logs entries on the server? On 28 jul, 02:21, Magnus alpineblas...@googlemail.com wrote: Hi, I would like to show the contents of a log at the client side: There is a complex operation

Re: Tree Padding

2010-07-28 Thread nacho
jejje yes i pulled out all my hairs from the head when i was fighting with that. On 28 jul, 11:36, David E. dve1...@gmail.com wrote: Thanks for the response Nacho. I got too frustrated trying to work with the GWT Tree implementation, so I just rolled out my own from scratch. It's much more

Re: How to use external jars and java.awt on server side

2010-08-01 Thread nacho
If the lib is not supported by app engine you will need to deploy into another server, for example a Tomcat. On 30 jul, 19:24, RhinestoneMaster guruko...@gmail.com wrote: We're trying to convert a pdf to an image using a software called JPedal. This software is in an external jar. Our

Re: multi-file selection upload - swfupload can work with gwt?

2010-08-02 Thread nacho
I think that GMail now is using html5. On 31 jul, 15:26, buz...@gmail.com buz...@gmail.com wrote: There is a project called swfupload-gwt, which embeds multi-file upload capabilities into gwt application. We are using that in several applications, so it is quite stable. Without Flash you can

I need a little help with request builder

2010-08-16 Thread nacho
Well, the trouble is not exactly with request builder. The thing is like this. I have a class BinFileReader that in the constructor receives an url an read it address file contents. And the class haves some methods, like readString(), readInt, readByte, etc. But, obviusly, first at all, to

Re: I need a little help with request builder

2010-08-16 Thread nacho
Yes, i thought to do in that way. But the trouble is that i need to work with 3 files, and i need to execute more than one method over the file contents, so that was that i was wondering some how to make sure that the content was loaded and then work with it. On 16 ago, 14:45, André Moraes

How to handle every key down event in the page?

2010-08-19 Thread nacho
I've found this class, but i can't get an example about how to use it. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/event/dom/client/HandlesAllKeyEvents.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: how do i do Gadget read/write file?

2010-09-19 Thread nacho
1) Let the user upload a file to your server and then parse it. 2) Create a file in your server and send it to the browser so the user can download it. On 14 sep, 22:50, Alex monsterno...@gmail.com wrote: 1)How do i read a file in client side, i want my gadget to read a file and parse it.

Re: GWT and concurrency

2010-09-19 Thread nacho
I don't jnow if this is what you are searching but http://download.oracle.com/javase/1.5.0/docs/api/java/util/ConcurrentModificationException.html is in the jre emulation http://code.google.com/intl/es-CL/webtoolkit/doc/1.6/RefJreEmulation.html On 19 sep, 10:53, Blagoja Chavkoski

Re: GWT save and modify in database(mysql)

2010-09-21 Thread nacho
I see lot of code but what is your trouble / question? On 20 sep, 07:34, Buica Tatiana doggie...@yahoo.com wrote: So i had to do the following assignment in GWT: 1.Implement a selection/de-selection component as described below: The selected item in the first list goes into the second

Any recommended input validation lib?

2010-09-26 Thread nacho
Hi, searching on google i've found a few gwt validation libraries. I would like to know if you are using anyone in special or if you have tested some of them. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Datastore

2010-09-28 Thread nacho
I'm also using Objectify and it is great and simple On 25 sep, 06:09, Didier DURAND durand.did...@gmail.com wrote: Hi Trevor, I would suggest giving also a try to Objectify which a layer on top of raw Datastore: it makes access to data much easier and has a lower learning curve than JDO.

Re: Any recommended input validation lib?

2010-09-28 Thread nacho
On 27 Sep., 10:51, Thomas Broyer t.bro...@gmail.com wrote: On Sep 27, 2:47 am, nacho vela.igna...@gmail.com wrote: Hi, searching on google i've found a few gwt validation libraries. I would like to know if you are using anyone in special or if you have tested some of them. FYI

Re: Send e-mail in GWT

2010-10-04 Thread nacho
You can use appengine to deploy your app and use the appengine mail api. On 4 oct, 09:41, Jeff Chimene jchim...@gmail.com wrote: Since you want the recipient address hidden, you cannot use GWT[1]. You'll have to send a request to the server and have it compose and send the email. [1]

Re: calling GWT Javascript compiler from ant

2010-10-04 Thread nacho
Try with this: ?xml version=1.0 encoding=utf-8 ? project name=ProjectName default=war basedir=. !-- Configure path to GWT SDK -- property name=gwt.sdk location=/path/to/gwt / !-- SWT on Mac requires the -XstartOFirstThreadFlag. -- condition property=XstartOnFirstThreadFlag value=-

Charset Problem

2010-01-13 Thread nacho
Hi, i want to put a link like this: Hyperlink lnkBackToInbox = new Hyperlink(« Back to Inbox, #); And in my hosted page i have the following line: meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 / also i tried with meta http-equiv=Content-Type content=text/html;

Re: Charset Problem

2010-01-14 Thread nacho
I tried but, GWT renders the link like this laquo; Back to Inbox :( On Jan 13, 8:16 pm, Jeff Schwab j...@schwabcenter.com wrote: nacho wrote: Hi, i want to put a link like this: Hyperlink lnkBackToInbox = new Hyperlink(« Back to Inbox, #); but when i put the link in the hosted page i

Re: Charset Problem

2010-01-14 Thread nacho
On Jan 14, 9:34 am, Lothar Kimmeringer j...@kimmeringer.de wrote: nachoschrieb: I tried but, GWT renders the link like this laquo; Back to Inbox Try setting the text with setHTML instead of setting it in the constructor. What charset is specified in your development-environment when

How could i modify the padding in a gwt tree item

2010-01-18 Thread nacho
I want to render a gwt tree, but when gwt renders the items puts padding-left: 16px i want that gwt puts padding-left: -10px Is there any way? any method available? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

How could i get today date in a client class

2010-01-18 Thread nacho
Hi i want to do this and get today date in a client class: Date today = new Date(); but i dont't get today date, i get something wrong. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

About user logged

2010-01-20 Thread nacho
Hi, i want to make an application in wich the user must log in. What i do for it is i have filter defined in the web.xml wich filters all the request like /myapplication/* If the user is loged it makes the request, if not i redirect the user to the login page. My problem is when the session

How can I remove a FlexTable?

2009-10-16 Thread nacho
Hi, i cant remove a FlexTable. This is my code: In my html div id=listado/div In my Java FlexTable listado = new FlexTable(); ... ... RootPanel.get(listado).add(listado); And then in a click handler i want to remove that table, but it doesnt erase RootPanel.get(listado).clear(); How

How do I boostrap my Entry Point class with the User service?

2009-10-24 Thread nacho
Hi, im developing an aplication in gwt and i have an entry point class. What i do no realize how to do is how to only permit access to the user that is logged using the user service ( http://code.google.com/appengine/docs/java/gettingstarted/usingusers.html ) Do i have to put something in the

Problems with userService.createLogoutURL

2009-10-26 Thread nacho
Hi, i have an application with the following web.xml, that secure my application requesting the user login with Google Account. ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd;

Re: Does anyone worked with GWT connecting to Web Services in the server side?

2009-11-07 Thread nacho
error, my problem is that i can't make the GWT compiler to get run and compile the js files. How could i do? On Nov 7, 6:22 am, MarcoGT marc...@gmail.com wrote: On Nov 6, 7:43 pm, nacho vela.igna...@gmail.com wrote: Hi, i'm trying to develop an application with GWT in wich one i have

Re: GWT and FlowPlayer

2009-11-24 Thread nacho
I maded a native method to initialize Flow Player when the HTMLPanel is rendered. I hope it helps you. protected static native void play() /*-{ $wnd.flowPlayerInit(player, flowplayer/flowplayer-3.1.1.swf); }-*/; On Nov 21, 4:26 am, bmattar bassem.abdela...@gmail.com

How to create a login in gwt?

2009-11-27 Thread nacho
!-- Servlets -- servlet servlet-namehousesService/servlet-name servlet-classcom.nacho.houses.server.services.HousesServiceImpl/ servlet-class /servlet servlet-mapping servlet-namehousesService/servlet-name url-pattern/nacho/HousesService/url-pattern /servlet-mapping !-- Default

Re: My app works once deployed, but not in hosted mode.

2009-12-07 Thread nacho
Could it be that you in the server side are using a class that is not in the white list. On 5 dic, 16:00, bcr666 bcr...@gmail.com wrote: I see the blank page in the hosted browser, and if I right click and view source, the html is good. The hosted browser is not showing any of the things I put

Re: Row editor plugin usage in grid

2009-12-11 Thread nacho
You must call in the listener to rpc methods and in the server side use hibernate On Dec 11, 6:00 am, Ramesh nitt.ram...@gmail.com wrote: Hi , I am using hibernate to connect to database. I want to use row editor to edit my grid records. How to add listeners for Save and Cancel buttons.

Re: How to implement UserAuth / Login in GWT2.1

2010-10-19 Thread nacho
Are you looking something like this? http://code.google.com/intl/es-AR/webtoolkit/articles/dynamic_host_page.html On 19 oct, 08:41, Patrick Hilsbos patrick.hils...@cloudsters.net wrote: Hi, can someone tell me how to implement an user auth - using userinformation in gwt2.1? i already got,

Re: how to dim background while showing a DialogBox?

2010-10-20 Thread nacho
I didn't knew about this. So, so, so nice. That's why i love gwt :) On 20 oct, 09:57, marius.andreiana marius.andrei...@gmail.com wrote: On Oct 20, 1:58 pm, Lothar Kimmeringer j...@kimmeringer.de wrote: Am 20.10.2010 12:51, schrieb marius.andreiana: Do you have any suggestions on how to

Re: createLoginUrl not working in gwt dev mode (GWT and GAE tutorial)

2010-10-22 Thread nacho
I made something like that in a servlet: I have this method in my servlet: private boolean isDevelopment() { return ( SystemProperty.environment.value() == SystemProperty.Environment.Value.Development ); } so you can do something like this: String redirectUrl = /MyApp.html; if

Re: How can I het a URL link to open up my web app passing an argument?

2010-10-26 Thread nacho
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/History.html On 26 oct, 07:59, novarse stephenmwi...@gmail.com wrote: Hi all, Lets say I have a twitter message containing an URL link which has an event Id as an argument somewhere as part of the URL e.g.

Re: How can I het a URL link to open up my web app passing an argument?

2010-10-27 Thread nacho
great :) On 27 oct, 08:17, novarse stephenmwi...@gmail.com wrote: great, thanks nacho. exactly what i wanted On Oct 27, 4:01 am, nacho vela.igna...@gmail.com wrote: http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g... On 26 oct, 07:59, novarse stephenmwi...@gmail.com

Re: Servlet mappings in GWT development mode

2010-10-27 Thread nacho
Yo say that you can enter in http://localhost/foo.html but then you say that you want to enter to http://mymachine:/foo.html?gwt.codesvr=mymachine:9997 What about if you enter to http://127.0.0.1:/foo.html?gwt.codesvr=127.0.0.1:9997 On 26 oct, 19:39, Constantin Tanno

How can i delete a GWT Module?

2010-10-27 Thread nacho
I made a GWT module in eclipse (File - New - Module) And now, i want to delete that module. I already deleted MyModule.gwt.xml and MyModule.java (entry point class). But when i try to run my application i get this in my console: Loading modules com.mycompany.myapp.MyModule [ERROR]

Re: File Upload from jsp through GWT client

2010-10-27 Thread nacho
Have you tried this lib? http://code.google.com/p/gwtupload/ On 27 oct, 12:00, WL wailai...@hotmail.com wrote: Hi , I’m working on a application which has GWT client and jsp’s. The Layout of the page is designed in the GWT client and the body of the page is taken from the jsp.  I want to do

Re: GWT + JDO (GAE)

2010-11-07 Thread nacho
+1 On 7 nov, 11:17, Jeff Schwartz jefftschwa...@gmail.com wrote: +1 On Sun, Nov 7, 2010 at 5:46 AM, Shawn Brown big.coffee.lo...@gmail.comwrote:  Hi, I've been using JDO these weeks. I've followed the tutorial at GAE Docs, and I learned how to create and get entity objects. It

Re: GWT + MySQL

2010-11-07 Thread nacho
Are you running the app in the Jetty server provided by the Google plugin? This server emulates appengine enviroment and you must use classes that are in the appengine whitelist: http://code.google.com/intl/es-AR/appengine/docs/java/jrewhitelist.html Try running your app in a Tomcat. On 7 nov,

Is there a way to use i18n in a shared class that works on client and server too?

2010-11-19 Thread nacho
I have some Validators classes. I use those classes in the client code, so I think to use Constants: For example, in some part of my AccountValidator I have this: errors.add(myConstants.accountTypeRequired()); That works great for GWT compiled code. But what about if I need to use this same

Re: WEB SERVICES

2010-12-05 Thread nacho
What i did was interact to the ws in my gwt app server code. What i mean is, for example, if you are using RPC to comunicate to your server, that you need to call to your ws in your MyServiceImpl class and that's all. But i have to say to you, that i needed to use JAX-WS and this lib is not

Re: WEB SERVICES

2010-12-09 Thread nacho
permit me to add a webservice because my project has not a server (Tomcat). Have you created a gwt project that can run on Tomcat with eclipse + gwt eclipse plugin? Can you give me some suggestions? Thanks very much Daniele On 5 Dic, 14:50, nacho vela.igna...@gmail.com wrote: What i did

Re: Is there a way to use i18n in a shared class that works on client and server too?

2010-12-09 Thread nacho
Any idea? Noone did this before? On 19 nov, 12:36, nacho vela.igna...@gmail.com wrote: I have some Validators classes. I use those classes in the client code, so I think to use Constants: For example, in some part of my AccountValidator I have this: errors.add

Re: Calling Server Side code on Client Side

2010-12-11 Thread nacho
Hi Taurun. You can use in your client code classes that you are using in the server. For example, your model classes. But, you can't use in those classes any class that you don't have the source. Suposse that you have a model class: User.class, in this class, all the code must be translatable

Is there anyway to choose language in runtime?

2010-12-28 Thread nacho
Hi, i'm using i18n with Constants, i have two languages {ES, EN} and it runs ok. What i need that when the user choose another language in a combo, for example [Spanish] show the content of my app in Spanish. What i'm doing is to redirect to the user to my app url passing the locale as

Re: handling session timeout - is there a central hook?

2010-12-28 Thread nacho
In the server side I created a class (MyServiceServlet) that extends from RemoteServiceServlet and in the method onBeforeRequestDeserialized(String serializedRequest) i check if the user is logued. If is not, i throw a AuthenticationException. And in the client side I created a abstract class

Re: GWT Application Login/Logout

2010-12-28 Thread nacho
On 27 dic, 04:01, katampa...@gmail.com katampa...@gmail.com wrote: Hi,       I am developing RIA with GWT frame work which is built using MVP architecture [Views, Places, Activities model]. This application include login page, main page and logout page etc.. Each page is made as a view

Re: Tomcat - Failed to get the SerializationPolicy (gwt/rpc)

2010-12-28 Thread nacho
I think that you forget in any of your model classes to implements com.google.gwt.user.client.rpc.IsSerializable; Every class that you want to send through a RPC you need to make it implement com.google.gwt.user.client.rpc.IsSerializable; If this is not your problem, be sure that you have a

Re: New user - how to create new GWT project

2010-12-30 Thread nacho
http://code.google.com/intl/es-AR/webtoolkit/doc/1.6/DevGuideServerCommunication.html#DevGuideCreatingServices On 27 dic, 19:12, xdzgor xdz...@hotmail.com wrote: Hi - I am using Eclipse to create a GWT-based application. When I create a new GWT remote service, an interface called, for example,

Re: Is there anyway to choose language in runtime?

2010-12-30 Thread nacho
://gwt.google.com/samples/Showcase/Showcase.html?locale=fr_FR#!Cw... (See the locale selector in the upper right.) http://code.google.com/webtoolkit/doc/latest/DevGuideI18n.htmlhttp://code.google.com/webtoolkit/doc/latest/DevGuideI18nLocale.html#... On Dec 28, 12:21 pm, nacho vela.igna...@gmail.com wrote

UiBinder i18n best practices?

2010-12-30 Thread nacho
Hi, i would to know about your experience with UiBinder and i18n? Wich is is the best way to do this? Thanks in advance! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Happy New Year

2011-01-02 Thread nacho
++; On 1 ene, 16:08, gopal bhalala gopalbhal...@gmail.com wrote: Happy New Year to all Best Regards Thanking you, Gopal Dhanjibhai Bhalala On Sat, Jan 1, 2011 at 9:27 PM, Duong BaTien duong.bat...@gmail.com wrote: Happy New Year to all participants in GWT, GAE and Objectify. On Fri,

Re: File choose

2011-01-03 Thread nacho
Take a look to the gwtupload project source http://code.google.com/p/gwtupload/ On 3 ene, 08:44, jc jc.chan...@gmail.com wrote: I am using only GWT code for file choosing, but posting code are in javascript and HTML 5. I know only the java and not other. So i need app for GWT for read, write

Re: How to get a widget from another panel

2011-01-03 Thread nacho
Just add the widget to the panel that you want. panel.add(widget); On 3 ene, 00:29, Néstor Boscán nesto...@gmail.com wrote: Hi I have a GWT application with two panels. How to I get a Widget from one panel from the other panel?. Regards, Néstor Boscán -- You received this message

Re: deploy new server version - how to inform clients?

2011-01-04 Thread nacho
When you call to your services you can do something like this in your AsyncCallback public void onFailure(Throwable caught) { if (caught instanceof IncompatibleRemoteServiceException) { Window.Location.assign(/newUrl); } } Regards. On 4 ene, 09:22, Nirmal Patel

Re: Logging in shared code

2011-01-05 Thread nacho
I have a similar issue with translations in shared code. Is there any way to know if the code is running on server side or running in client side? For example: if (isRunningOnClient) { Window.alert(myConstants.hello()); } else if (isRunningOnServer) {

Re: How to write file with GWT?

2011-01-05 Thread nacho
Can't you deploy your app in a Tomcat? If you do this, you don't have any restriction. On 4 ene, 17:18, a...@mechnicality.com a...@mechnicality.com wrote: Yes, but that doesn't actually 'write' the file does it? It just generates a String which contains the XML representation of the java

How can I know if my script is running inside an iframe or not?

2011-01-05 Thread nacho
I have a script that sometimes will run inside an iframe an sometimes not. How can i know if the script if running inside an iframe? Another doubt, if the script is running inside the iframe how can i redirect the parent window? If I do Window.Location.assign(/newUrl) obviusly the content of the

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 meta name='gwt:property' content=locale=es 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

Re: GWT 2.1 MVP Multiple activities clarification help

2011-01-07 Thread nacho
Very nice example Mauro! -- 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

Re: BlobInfo using the BlobKey

2011-01-07 Thread nacho
You should post your answer in Google Appengine group https://groups.google.com/forum/#!forum/google-appengine -- 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

Re: deploy GWT app with Tomcat istead GAE..

2011-01-07 Thread nacho
Look here http://code.google.com/intl/es-AR/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: GWT 2.1 compiler option : -noserver

2011-01-07 Thread nacho
Is this package com.xyz.dashboard.prototype.gwt.widget translatable to js? You should insert a line in your MyModule.gwt.xml like this !-- Specify the paths for translatable code-- source path='widget'/ -- You received this message because you are subscribed to the Google

Re: How to skip history token on place change? (Activies, Places and History management)

2011-01-08 Thread nacho
If you don't add MyPlace.Tokenizer.class to your AppPlaceHistoryMapper the activity will be fired but the history won't change -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: deploy GWT app with Tomcat istead GAE..

2011-01-08 Thread nacho
If you need I can give an example of an ant.xml that compiles your gwt code and then makes the war. So you can run the ant task and then upload the war file to your tomcat. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: I need your help error: An IncompatibleRemoteServiceException was thrown while processing this call

2011-01-08 Thread nacho
Try to recompile your gwt code. -- 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

Re: gmail/facebook like chat -asp.net

2011-01-11 Thread nacho
I think that there's betters places to ask what you need. -- 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

Re: Created project, but there is no Build.xml

2011-01-12 Thread nacho
In previuos releases of the sdk if you create your project using webAppCreator the build.xml was created. I believe that with gwt 2.1 must be created too. Try using that tool and then import your project to ecplise. -- You received this message because you are subscribed to the Google Groups

Re: GWT External JARs and use on the Client Side

2011-01-14 Thread nacho
You can include JARs, but those JARs must include the source code. -- 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

Re: No Log messages at level INFO in eclipse.

2011-01-14 Thread nacho
If you are using dev server, try to update your appengine sdk. I was having the same issues and now using appengine-sdk-1.4.0 I can log with INFO level. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Created project, but there is no Build.xml

2011-01-17 Thread nacho
Try with this build.xml When you compile gwt first your java classes are compiled. ?xml version=1.0 encoding=utf-8 ? project name=MyProject default=war basedir=. !-- Configure path to GWT SDK -- property name=gwt.sdk location=/path/to/gwt-sdk / !-- SWT on Mac requires the

Re: Created project, but there is no Build.xml

2011-01-17 Thread nacho
;) -- 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.com. For more options,

Re: Widget Library

2011-01-24 Thread nacho
Check this post: http://swe-strongsteve.blogspot.com/2010/11/creating-re-usable-composites-using-gwt.html -- 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

Re: BestPractice : Use of the Editor Framework with MVP (Place, Activity) and RequestFactory

2011-01-27 Thread nacho
Great -- 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.com. For more

Re: I18N compilation error

2011-01-31 Thread nacho
Do you have your resource properties file? *Begin by creating a default properties file called MyConstants.propertiesin your GWT project. You can place the file anywhere in your module's source path, but the .properties file and corresponding interface must be in the same package. It's fine to

Re: Append #name to URL

2011-01-31 Thread nacho
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/History.html -- 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

Why my app isn't getting the locale from the browser preferred languages?

2011-02-08 Thread nacho
I'm using FF in Mac. I have es-ar as the only preferred language. I'm using i18n with Constants. I have this in my Module Descriptor inherits name=com.google.gwt.i18n.I18N/ extend-property name=locale values=en/ extend-property name=locale values=es/ And, i can't see

  1   2   >