Re: Gwt server push

2011-12-10 Thread nacho
If you are using appengine you can try with the Channel Api http://code.google.com/appengine/docs/java/channel/ -- 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: Mix Fixed and Relative Column Widths in CellTable?

2011-12-08 Thread nacho
Is anyone using fixed width and relative width columns in Chrome / Mac? I would like to know if this issue that I am having is something that I am doing wrong. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: Mix Fixed and Relative Column Widths in CellTable?

2011-12-08 Thread nacho
It doesn't display the way that I'd like. I would like that my table has a 100% width so it adjust it size to the container div. Here is a capture: http://www.under-code.com/cap-celltable.png In FF It displays in the way that I want: http://www.under-code.com/cap-ff.png -- You received

Re: Mix Fixed and Relative Column Widths in CellTable?

2011-12-08 Thread nacho
You are right, I am a total dumb. My CellTable was inside a VerticalPanel. Removing the VerticalPanel now my CellTable is displaying as I want. About what you are saying of having at least one column without width, that was my first attempt, also displaying well in FF but not in Chrome, but

Mix Fixed and Relative Column Widths in CellTable?

2011-11-25 Thread nacho
I'm trying to have fixed width columns and relative width columns togheter, can't get it running. As described here http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellTable.html I am trying to do it in this way: table.addColumn(checkBoxColumn); table.addColumn(nameColumn,

Re: GWT - Spring Security

2011-11-24 Thread nacho
I have implemented Spring Security and GWT togheter, but what I can't figure out hw can I handle is how to logout when an RPC fails because the user is not logged in anymore. For example, the user logs in in my application, then he for example clean the browser session, so he is not logged in

Is there anyway to don't go to a place until a rpc is done?

2011-09-27 Thread nacho
For example, let's say that I have this dummy menu [ *Goto Activity Foo* | *Goto Activity Bar* ] When I click on [ *Goto Activity Foo* ] I go to the the Foo Activity, and in the start() method I call to a rpc, let's say dummyService.fetchData(). And, then I click on the [ *Goto Acitivity Bar*

Re: Is there anyway to don't go to a place until a rpc is done?

2011-09-27 Thread nacho
For example, let's say I have a menu option List Users, and I have a button in the List Users view that removes a User. Then a user of my app clicks in the Delete User button, and inmediately clicks in List Users option in the menu. This RPC goes to the server before that the deleteUser RPC is

Re: Styling CellList?

2011-09-22 Thread nacho
thank :) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/4VXQUZk0KTwJ. To post to this group, send email to

Styling CellList?

2011-09-21 Thread nacho
I am trying to apply styles to a CellList, and I have this in my Java: interface MyCellListResources extends CellList.Resources { @Source({CellList.css}) MyCellListStyle cellTableStyle(); } interface MyCellListStyle extends CellList.Style { } cellList = new

How can I create a widget add it to a CellTable and perform some action when it's clicked?

2011-08-17 Thread nacho
I need to put some kind of Button in a CellTable column. I created a class that extends AbstractCell: public class AnchorCell extends AbstractCellAnchor { @Override public void onBrowserEvent(com.google.gwt.cell.client.Cell.Context context, Element parent, Anchor value,

Re: How can I create a widget add it to a CellTable and perform some action when it's clicked?

2011-08-17 Thread nacho
Looks i was trying to reinvent the wheel :D Thanks! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/2WphgIMPNWIJ. To post to this group, send

Re: GWT Validation framework

2011-08-09 Thread nacho
Any of those validation options can be easily used with MVP Editor fw? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/Tnuj01pYZZsJ. To post to

Re: GWT deployment

2011-05-17 Thread nacho
You can create an ant task to compile your gwt app and create a war. Try with something like this: ?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: How to show a message while waiting on a RPC service request (not RequestFactory request)

2011-05-17 Thread nacho
Take a look to this post: https://groups.google.com/forum/#!searchin/google-web-toolkit/onreturn/google-web-toolkit/tvBFoeW3SWw/IY_CVamzTkYJ With this approach your message will show while there is at least one rpc call that hasn't finished. When all your rpc calls finish your message will be

Re: Temporary disable URL changes when using Places?

2011-05-10 Thread nacho
You have to put in your PlaceHistoryMapper only the places that want to handle with the history handler. PlaceHistoryMapper is the link between your PlaceTokenizers and GWT's PlaceHistoryHandler that synchronizes the browser URL with each Place.

Re: What do you think about my Session flow?

2011-03-11 Thread nacho
I have a login.jsp with the login form. And a hostedPage.jsp where the user is redirected after his logged in. Also I have a MyServiceServlet that extends RemoteServiceServlet. In this class I overrided onBeforeRequestDeserialized and I check if the user if logued in. If he is not, I throw an

Re: compiling projects with multiple GWT Client modules

2011-03-11 Thread nacho
On Friday, March 11, 2011 1:19:32 AM UTC-3, zixzigma wrote: Hello Everyone, I have broken my Client side part of my GWT app, into several gwt modules, - a common module configuring EventBus,PlaceController,ActivityMapper, + EntryPoint) - several modules each corresponding to a

Re: Where to place external libs?

2011-03-08 Thread nacho
Did you added your lin to your class path? -- 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: Where to place external libs?

2011-03-08 Thread nacho
*lin = lib -- 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: Spring GWT Integration

2011-02-25 Thread nacho
1+ -- 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: Including gwt-widgets in a servlet generated page

2011-02-17 Thread nacho
Yes, it's simple, create a GWT Module for each entry point that you need. Then create, for example a new JSP file called MyModule.jsp and copy from your recently created hosted page (.html) the script tag to include the GWT generated js. I hope this helps you. PS: And if you need to share

Re: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

2011-02-11 Thread nacho
I think that your trouble is that the classes compiled to JS are different to the classes that you have in the server. Using dev mode after change in a class that I use in a RPC I just reload the page and the problem is gone. -- You received this message because you are subscribed to the

Re: Including gwt-widgets in a servlet generated page

2011-02-11 Thread nacho
In the same way that in a html page. http://code.google.com/intl/es-AR/webtoolkit/articles/dynamic_host_page.html#servlet -- 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: Info. about Gmail Contextual Gadget

2011-02-10 Thread nacho
http://code.google.com/p/gwt-google-apis/wiki/GadgetsGettingStarted http://code.google.com/intl/es-AR/apis/gadgets/docs/dev_guide.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

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

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

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: 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: 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: 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-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: 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: 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: 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

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: 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

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: 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: 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: 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

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: 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

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: 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

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: 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,

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: 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: 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 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: 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: 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=-

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

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: 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

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

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

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

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

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: 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 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: 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

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

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

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

  1   2   >